diff --git a/CHANGELOG.md b/CHANGELOG.md index b69b57590..c9124fa3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.36.0 (3/4/2020) + + * D20673166 - New Hermes Debugger plugin for React Native apps. + * D20789712 - Fixed error "SHA-1 for file is not computed" on 3rd party plugin compilation in dev mode (yarn start). + * D20767096 - Fixed an issue where QPL points where not showing up in the marker timeline + * D20724437 - Fixed applying of product attributes (title, publisher etc) to Flipper builds + + # Changelog See [desktop/static/CHANGELOG.md](desktop/static/CHANGELOG.md) diff --git a/Flipper.podspec b/Flipper.podspec index a44a8420a..9cdd1ab4f 100644 --- a/Flipper.podspec +++ b/Flipper.podspec @@ -3,7 +3,7 @@ # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. -flipperkit_version = '0.35.0' +flipperkit_version = '0.36.0' Pod::Spec.new do |spec| spec.name = 'Flipper' spec.version = flipperkit_version diff --git a/FlipperKit.podspec b/FlipperKit.podspec index 2f563f668..4d53ee016 100644 --- a/FlipperKit.podspec +++ b/FlipperKit.podspec @@ -5,7 +5,7 @@ folly_compiler_flags = '-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0' yogakit_version = '~> 1.18' -flipperkit_version = '0.35.0' +flipperkit_version = '0.36.0' Pod::Spec.new do |spec| spec.name = 'FlipperKit' spec.version = flipperkit_version diff --git a/desktop/app/package.json b/desktop/app/package.json index d4fdff83b..1fb659a35 100644 --- a/desktop/app/package.json +++ b/desktop/app/package.json @@ -1,6 +1,6 @@ { "name": "flipper", - "version": "0.35.0", + "version": "0.36.0", "description": "Mobile development tool", "productName": "Flipper", "author": "Facebook Inc", @@ -32,7 +32,7 @@ "expand-tilde": "^2.0.2", "express": "^4.15.2", "fb-watchman": "^2.0.0", - "flipper-doctor": "0.35.0", + "flipper-doctor": "0.36.0", "fs-extra": "^8.0.1", "immer": "^6.0.0", "immutable": "^4.0.0-rc.12", @@ -91,4 +91,4 @@ "optionalDependencies": { "7zip-bin-mac": "^1.0.1" } -} \ No newline at end of file +} diff --git a/desktop/babel-transformer/package.json b/desktop/babel-transformer/package.json index 09c6b320a..9f1471709 100644 --- a/desktop/babel-transformer/package.json +++ b/desktop/babel-transformer/package.json @@ -1,6 +1,6 @@ { "name": "flipper-babel-transformer", - "version": "0.35.0", + "version": "0.36.0", "description": "Babel transformer for Flipper plugins", "repository": "facebook/flipper", "main": "lib/index.js", diff --git a/desktop/doctor/package.json b/desktop/doctor/package.json index 2fc65bdda..b15deab2c 100644 --- a/desktop/doctor/package.json +++ b/desktop/doctor/package.json @@ -1,6 +1,6 @@ { "name": "flipper-doctor", - "version": "0.35.0", + "version": "0.36.0", "description": "Utility for checking for issues with a flipper installation", "main": "lib/index.js", "flipper:source": "src", diff --git a/desktop/headless-tests/package.json b/desktop/headless-tests/package.json index bf88c421f..647dc80d6 100644 --- a/desktop/headless-tests/package.json +++ b/desktop/headless-tests/package.json @@ -1,6 +1,6 @@ { "name": "flipper-headless-tests", - "version": "0.35.0", + "version": "0.36.0", "main": "index.js", "private": true, "scripts": { diff --git a/desktop/package.json b/desktop/package.json index 486d1a87e..309bae076 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,6 +1,6 @@ { "name": "flipper-project", - "version": "0.35.0", + "version": "0.36.0", "description": "Mobile development tool", "productName": "Flipper", "author": "Facebook Inc", diff --git a/desktop/pkg/package.json b/desktop/pkg/package.json index 15b6ad8ec..0ac013c8a 100644 --- a/desktop/pkg/package.json +++ b/desktop/pkg/package.json @@ -1,6 +1,6 @@ { "name": "flipper-pkg", - "version": "0.35.0", + "version": "0.36.0", "description": "Utility for building and publishing Flipper plugins", "repository": "facebook/flipper", "main": "lib/index.js", @@ -20,7 +20,7 @@ "@types/node": "^13.7.5", "cli-ux": "^5.4.5", "fs-extra": "^8.1.0", - "flipper-babel-transformer": "0.35.0", + "flipper-babel-transformer": "0.36.0", "inquirer": "^7.0.5", "metro": "^0.58.0", "tslib": "^1" diff --git a/desktop/static/package.json b/desktop/static/package.json index 8b5464238..574a2d176 100644 --- a/desktop/static/package.json +++ b/desktop/static/package.json @@ -1,6 +1,6 @@ { "name": "flipper-static", - "version": "0.35.0", + "version": "0.36.0", "main": "index.js", "private": true, "license": "MIT", @@ -10,7 +10,7 @@ "fb-watchman": "^2.0.0", "fix-path": "^3.0.0", "fs-extra": "^8.1.0", - "flipper-babel-transformer": "0.35.0", + "flipper-babel-transformer": "0.36.0", "mem": "^6.0.0", "metro": "^0.58.0", "mkdirp": "^1.0.0", diff --git a/docs/getting-started/android-native.md b/docs/getting-started/android-native.md index 1719896a1..91b78f261 100644 --- a/docs/getting-started/android-native.md +++ b/docs/getting-started/android-native.md @@ -24,10 +24,10 @@ repositories { } dependencies { - debugImplementation 'com.facebook.flipper:flipper:0.35.0' + debugImplementation 'com.facebook.flipper:flipper:0.36.0' debugImplementation 'com.facebook.soloader:soloader:0.8.2' - releaseImplementation 'com.facebook.flipper:flipper-noop:0.35.0' + releaseImplementation 'com.facebook.flipper:flipper-noop:0.36.0' } ``` diff --git a/docs/getting-started/ios-native.md b/docs/getting-started/ios-native.md index f75f79f5a..a889286da 100644 --- a/docs/getting-started/ios-native.md +++ b/docs/getting-started/ios-native.md @@ -15,7 +15,7 @@ The following configuration assumed CocoaPods 1.9+. ```ruby project 'MyApp.xcodeproj' -flipperkit_version = '0.35.0' +flipperkit_version = '0.36.0' target 'MyApp' do platform :ios, '9.0' @@ -77,7 +77,7 @@ end ```ruby project 'MyApp.xcodeproj' -flipperkit_version = '0.35.0' +flipperkit_version = '0.36.0' target 'MyApp' do platform :ios, '9.0' diff --git a/docs/setup/layout-plugin.md b/docs/setup/layout-plugin.md index f07ef0142..6cf5d0dc9 100644 --- a/docs/setup/layout-plugin.md +++ b/docs/setup/layout-plugin.md @@ -28,7 +28,7 @@ gradle configuration: ```groovy dependencies { - debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.35.0' + debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.36.0' debugImplementation 'com.facebook.litho:litho-annotations:0.19.0' // ... } diff --git a/docs/setup/leak-canary-plugin.md b/docs/setup/leak-canary-plugin.md index 5ba6455e3..12fdbb5b4 100644 --- a/docs/setup/leak-canary-plugin.md +++ b/docs/setup/leak-canary-plugin.md @@ -9,7 +9,7 @@ Ensure that you already have an explicit dependency in your application's ```groovy dependencies { - debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.35.0' + debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.36.0' debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1' releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1' } diff --git a/docs/setup/network-plugin.md b/docs/setup/network-plugin.md index b3e41aab4..b727a46ea 100644 --- a/docs/setup/network-plugin.md +++ b/docs/setup/network-plugin.md @@ -12,7 +12,7 @@ The network plugin is shipped as a separate Maven artifact: ```groovy dependencies { - debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.35.0' + debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.36.0' } ``` diff --git a/gradle.properties b/gradle.properties index 24a2eb4a6..34eafe7af 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ # LICENSE file in the root directory of this source tree. # POM publishing constants -VERSION_NAME=0.35.1-SNAPSHOT +VERSION_NAME=0.36.0 GROUP=com.facebook.flipper POM_URL=https://github.com/facebook/flipper POM_SCM_URL=https://github.com/facebook/flipper.git diff --git a/iOS/Tutorial/Podfile b/iOS/Tutorial/Podfile index e52a79aa6..096b3b849 100644 --- a/iOS/Tutorial/Podfile +++ b/iOS/Tutorial/Podfile @@ -1,6 +1,6 @@ project 'Tutorial.xcodeproj' swift_version = "4.1" -flipperkit_version = '0.35.0' +flipperkit_version = '0.36.0' use_frameworks! target 'Tutorial' do diff --git a/react-native/react-native-flipper/package.json b/react-native/react-native-flipper/package.json index 39623a6b7..d07d22ac8 100644 --- a/react-native/react-native-flipper/package.json +++ b/react-native/react-native-flipper/package.json @@ -1,7 +1,7 @@ { "name": "react-native-flipper", "title": "React Native Flipper Bindings", - "version": "0.35.0", + "version": "0.36.0", "description": "TODO", "main": "index.js", "types": "index.d.ts",