Compare commits

...

3 Commits

Author SHA1 Message Date
Nick Gerleman
24d2782ad3 [local] Fix workflow syntax for npm 2023-06-29 11:38:07 -07:00
Nick Gerleman
f216c84175 [local] Fix workflow syntax 2023-06-29 11:34:23 -07:00
Nick Gerleman
b5d105132e [local] Set version to 2.0.0-beta.1 2023-06-29 11:22:56 -07:00
7 changed files with 8 additions and 8 deletions

View File

@@ -3,7 +3,7 @@ name: Publish Android Release
on:
push:
tags:
- *
- '*'
workflow_dispatch:
jobs:

View File

@@ -3,7 +3,7 @@ name: Publish CocoaPods Release
on:
push:
tags:
- *
- '*'
workflow_dispatch:
jobs:

View File

@@ -3,7 +3,7 @@ name: Publish NPM Release
on:
push:
tags:
- *
- '*'
workflow_dispatch:
jobs:

View File

@@ -6,7 +6,7 @@
Pod::Spec.new do |spec|
spec.name = 'Yoga'
spec.version = '2.0.0'
spec.version = '2.0.0-beta.1'
spec.license = { :type => 'MIT', :file => "LICENSE" }
spec.homepage = 'https://yogalayout.com/'
spec.documentation_url = 'https://yogalayout.com/docs'

View File

@@ -5,7 +5,7 @@
podspec = Pod::Spec.new do |spec|
spec.name = 'YogaKit'
spec.version = '2.0.0'
spec.version = '2.0.0-beta.1'
spec.license = { :type => 'MIT', :file => "LICENSE" }
spec.homepage = 'https://yogalayout.com/'
spec.documentation_url = 'https://yogalayout.com/docs'

View File

@@ -11,4 +11,4 @@ android.useAndroidX=true
org.gradle.jvmargs=-Xmx1536M
VERSION_NAME=2.0.0
VERSION_NAME=2.0.0-beta.1

View File

@@ -1,6 +1,6 @@
{
"name": "yoga-layout",
"version": "2.0.0",
"version": "2.0.0-beta.1",
"description": "An embeddable and performant flexbox layout engine with bindings for multiple languages",
"license": "MIT",
"author": "Meta Open Source",