From caed1dc2303e8156fcc06c26770d4bb1d0f22788 Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Mon, 13 Nov 2023 22:09:35 -0800 Subject: [PATCH] Make trunk builds "0.0.0" (#41423) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/41423 X-link: https://github.com/facebook/yoga/pull/1466 Right now Yoga's main branch says it's 2.0.0, and RN's dirsync says its 1.14.0, but the code is really closer to what will be Yoga 3.0.0. This changes trunk builds to "0.0.0" for clarity, which will be assigned a real version number the first time publishing a new Yoga branch. This is separately a good practice to prevent the chance of accidental publishes causing damage. Changelog: [Internal] Reviewed By: christophpurrer Differential Revision: D51236778 fbshipit-source-id: 06cac89bcca1c707ce5c00f9c346f627eef6b4bc --- packages/react-native/ReactCommon/yoga/Yoga.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/ReactCommon/yoga/Yoga.podspec b/packages/react-native/ReactCommon/yoga/Yoga.podspec index f14e3d45114839..a84876951aa67c 100644 --- a/packages/react-native/ReactCommon/yoga/Yoga.podspec +++ b/packages/react-native/ReactCommon/yoga/Yoga.podspec @@ -16,7 +16,7 @@ end Pod::Spec.new do |spec| spec.name = 'Yoga' - spec.version = '1.14.0' + spec.version = '0.0.0' spec.license = { :type => 'MIT' } spec.homepage = 'https://yogalayout.dev' spec.documentation_url = 'https://yogalayout.dev/docs/'