Compare commits

..

4 Commits

Author SHA1 Message Date
Nick Gerleman
3a96c7717d Bump to 2.0.1 2023-10-31 21:49:09 -07:00
Nick Gerleman
c01dcd2338 Fix yoga-layout/wasm-sync exporting async binary if browser/node export conditions not met
When node or browser export conditions are not met, we resolve `yoga-layout/wasm-sync` to the async binary because of a typo.
2023-10-31 21:48:56 -07:00
Nick Gerleman
83a58bb9d6 Fixup packages 2023-07-26 22:28:21 -07:00
Nick Gerleman
30b697d3fe ./set-version.py 2.0.0 2023-07-25 09:47:27 -07:00
4 changed files with 5 additions and 5 deletions

View File

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

View File

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

View File

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

View File

@@ -1,6 +1,6 @@
{ {
"name": "yoga-layout", "name": "yoga-layout",
"version": "2.0.0-beta.2", "version": "2.0.1",
"description": "An embeddable and performant flexbox layout engine with bindings for multiple languages", "description": "An embeddable and performant flexbox layout engine with bindings for multiple languages",
"license": "MIT", "license": "MIT",
"author": "Meta Open Source", "author": "Meta Open Source",
@@ -38,7 +38,7 @@
"./wasm-sync": { "./wasm-sync": {
"browser": "./src/entrypoint/wasm-sync-web.ts", "browser": "./src/entrypoint/wasm-sync-web.ts",
"node": "./src/entrypoint/wasm-sync-node.ts", "node": "./src/entrypoint/wasm-sync-node.ts",
"default": "./src/entrypoint/wasm-async-web.ts" "default": "./src/entrypoint/wasm-sync-web.ts"
} }
}, },
"files": [ "files": [