diff --git a/desktop/package.json b/desktop/package.json index b4b2e3369..eb926ac92 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -1,6 +1,6 @@ { "name": "flipper-project", - "version": "0.69.0", + "version": "0.70.0", "description": "Mobile development tool", "productName": "Flipper", "author": { diff --git a/desktop/static/CHANGELOG.md b/desktop/static/CHANGELOG.md index 7a6c0fb70..8cad661fb 100644 --- a/desktop/static/CHANGELOG.md +++ b/desktop/static/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.70.0 (6/1/2021) + + * [D25466557](https://github.com/facebook/flipper/search?q=D25466557&type=Commits) - [Internal] + * [D25497305](https://github.com/facebook/flipper/search?q=D25497305&type=Commits) - [Internal] + * [D25557789](https://github.com/facebook/flipper/search?q=D25557789&type=Commits) + * [D25620908](https://github.com/facebook/flipper/search?q=D25620908&type=Commits) - [Internal] + * [D25755812](https://github.com/facebook/flipper/search?q=D25755812&type=Commits) - Fix issue where React Native plugins didn't show up in the Sandy layout + + # 0.66.0 (18/11/2020) * [D24890375](https://github.com/facebook/flipper/search?q=D24890375&type=Commits) - [Sandy][Navigation] on Android, the currently active deeplink of the application will now be shown in the sidebar diff --git a/docs/getting-started/android-native.mdx b/docs/getting-started/android-native.mdx index 153760d06..581433881 100644 --- a/docs/getting-started/android-native.mdx +++ b/docs/getting-started/android-native.mdx @@ -26,10 +26,10 @@ repositories { } dependencies { - debugImplementation 'com.facebook.flipper:flipper:0.69.0' + debugImplementation 'com.facebook.flipper:flipper:0.70.0' debugImplementation 'com.facebook.soloader:soloader:0.9.0' - releaseImplementation 'com.facebook.flipper:flipper-noop:0.69.0' + releaseImplementation 'com.facebook.flipper:flipper-noop:0.70.0' } ``` diff --git a/docs/setup/layout-plugin.mdx b/docs/setup/layout-plugin.mdx index 767b287c3..9d01a9989 100644 --- a/docs/setup/layout-plugin.mdx +++ b/docs/setup/layout-plugin.mdx @@ -31,7 +31,7 @@ gradle configuration: ```groovy dependencies { - debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.69.0' + debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.70.0' debugImplementation 'com.facebook.litho:litho-annotations:0.19.0' // ... } diff --git a/docs/setup/leak-canary-plugin.mdx b/docs/setup/leak-canary-plugin.mdx index 6b376b2b0..8e8555dd3 100644 --- a/docs/setup/leak-canary-plugin.mdx +++ b/docs/setup/leak-canary-plugin.mdx @@ -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.69.0' + debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.70.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.mdx b/docs/setup/network-plugin.mdx index 3144cba96..e70a574ef 100644 --- a/docs/setup/network-plugin.mdx +++ b/docs/setup/network-plugin.mdx @@ -15,7 +15,7 @@ The network plugin is shipped as a separate Maven artifact: ```groovy dependencies { - debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.69.0' + debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.70.0' } ``` diff --git a/gradle.properties b/gradle.properties index fe8e02380..a7c0294a9 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.69.1-SNAPSHOT +VERSION_NAME=0.70.0 GROUP=com.facebook.flipper POM_URL=https://github.com/facebook/flipper POM_SCM_URL=https://github.com/facebook/flipper.git diff --git a/react-native/react-native-flipper/package.json b/react-native/react-native-flipper/package.json index 9068093ee..2c7e1ae3e 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.69.0", + "version": "0.70.0", "description": "Flipper bindings for React Native", "main": "index.js", "types": "index.d.ts",