From 473c05dc1af8335be1229c353bb1055842ffe686 Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Sat, 11 Nov 2023 20:33:51 -0800 Subject: [PATCH] Make trunk builds "0.0.0" Summary: 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. Differential Revision: D51236778 --- Yoga.podspec | 2 +- gradle.properties | 2 +- javascript/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Yoga.podspec b/Yoga.podspec index 0dd171e297..f5dfffe523 100644 --- a/Yoga.podspec +++ b/Yoga.podspec @@ -6,7 +6,7 @@ Pod::Spec.new do |spec| spec.name = 'Yoga' - spec.version = '2.0.0' + spec.version = '0.0.0' spec.license = { :type => 'MIT', :file => "LICENSE" } spec.homepage = 'https://yogalayout.com/' spec.documentation_url = 'https://yogalayout.com/docs' diff --git a/gradle.properties b/gradle.properties index e205cdeb11..cb6b2b4a38 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,4 +11,4 @@ android.useAndroidX=true org.gradle.jvmargs=-Xmx1536M -VERSION_NAME=2.0.0 +VERSION_NAME=0.0.0 diff --git a/javascript/package.json b/javascript/package.json index 13fecd9283..3abdfc8d97 100644 --- a/javascript/package.json +++ b/javascript/package.json @@ -1,6 +1,6 @@ { "name": "yoga-layout", - "version": "2.0.0", + "version": "0.0.0", "description": "An embeddable and performant flexbox layout engine with bindings for multiple languages", "license": "MIT", "author": "Meta Open Source",