Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 1923ad0

Browse files
generatedunixname89002005306973facebook-github-bot
generatedunixname89002005306973
authored andcommitted
Flipper Release: v0.172.0
Summary: Releasing version 0.172.0 Reviewed By: aigoncharov Differential Revision: D40720215 fbshipit-source-id: 24b3c7a82d285ee6bfc1819a38aaa7243350ea0a
1 parent 8aa2267 commit 1923ad0

File tree

11 files changed

+19
-12
lines changed

11 files changed

+19
-12
lines changed

desktop/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@
169169
"npm": "use yarn instead",
170170
"yarn": "^1.16"
171171
},
172-
"version": "0.171.1",
172+
"version": "0.172.0",
173173
"workspaces": {
174174
"packages": [
175175
"scripts",

desktop/plugins/public/layout/docs/setup.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You also need to compile in the `litho-annotations` package, as Flipper reflects
2727

2828
```groovy
2929
dependencies {
30-
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.171.1'
30+
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.172.0'
3131
debugImplementation 'com.facebook.litho:litho-annotations:0.19.0'
3232
// ...
3333
}

desktop/plugins/public/leak_canary/docs/setup.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To setup the <Link to={useBaseUrl("/docs/features/plugins/leak-canary")}>Leak Ca
88

99
```groovy
1010
dependencies {
11-
debugImplementation 'com.facebook.flipper:flipper-leakcanary2-plugin:0.171.1'
11+
debugImplementation 'com.facebook.flipper:flipper-leakcanary2-plugin:0.172.0'
1212
debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.8.1'
1313
}
1414
```

desktop/plugins/public/network/docs/setup.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The network plugin is shipped as a separate Maven artifact, as follows:
1212

1313
```groovy
1414
dependencies {
15-
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.171.1'
15+
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.172.0'
1616
}
1717
```
1818

desktop/static/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.172.0 (26/10/2022)
2+
3+
* [D40394563](https://github.com/facebook/flipper/search?q=D40394563&type=Commits)
4+
* [D40552235](https://github.com/facebook/flipper/search?q=D40552235&type=Commits) - Add a universal debug export button
5+
* [D40715523](https://github.com/facebook/flipper/search?q=D40715523&type=Commits) - Stop doing eval to load server add-ons
6+
7+
18
# 0.171.0 (17/10/2022)
29

310
* [D40338164](https://github.com/facebook/flipper/search?q=D40338164&type=Commits) - Better error message for EADDRINUSE

docs/getting-started/android-native.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ repositories {
2424
}
2525
2626
dependencies {
27-
debugImplementation 'com.facebook.flipper:flipper:0.171.1'
27+
debugImplementation 'com.facebook.flipper:flipper:0.172.0'
2828
debugImplementation 'com.facebook.soloader:soloader:0.10.4'
2929
30-
releaseImplementation 'com.facebook.flipper:flipper-noop:0.171.1'
30+
releaseImplementation 'com.facebook.flipper:flipper-noop:0.172.0'
3131
}
3232
```
3333

docs/getting-started/react-native-ios.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add all of the code below to your `ios/Podfile`:
5151
platform :ios, '9.0'
5252

5353
def flipper_pods()
54-
flipperkit_version = '0.171.1' # should match the version of your Flipper client app
54+
flipperkit_version = '0.172.0' # should match the version of your Flipper client app
5555
pod 'FlipperKit', '~>' + flipperkit_version, :configuration => 'Debug'
5656
pod 'FlipperKit/FlipperKitLayoutPlugin', '~>' + flipperkit_version, :configuration => 'Debug'
5757
pod 'FlipperKit/SKIOSNetworkPlugin', '~>' + flipperkit_version, :configuration => 'Debug'

docs/getting-started/react-native.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Latest version of Flipper requires react-native 0.69+! If you use react-native <
3434

3535
Android:
3636

37-
1. Bump the `FLIPPER_VERSION` variable in `android/gradle.properties`, for example: `FLIPPER_VERSION=0.171.1`.
37+
1. Bump the `FLIPPER_VERSION` variable in `android/gradle.properties`, for example: `FLIPPER_VERSION=0.172.0`.
3838
2. Run `./gradlew clean` in the `android` directory.
3939

4040
iOS:
@@ -44,7 +44,7 @@ react-native version => 0.69.0
4444
2. Run `pod install --repo-update` in the `ios` directory.
4545

4646
react-native version < 0.69.0
47-
1. Call `use_flipper` with a specific version in `ios/Podfile`, for example: `use_flipper!({ 'Flipper' => '0.171.1' })`.
47+
1. Call `use_flipper` with a specific version in `ios/Podfile`, for example: `use_flipper!({ 'Flipper' => '0.172.0' })`.
4848
2. Run `pod install --repo-update` in the `ios` directory.
4949

5050
## Manual Setup

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This source code is licensed under the MIT license found in the
44
# LICENSE file in the root directory of this source tree.
55
# POM publishing constants
6-
VERSION_NAME=0.171.2-SNAPSHOT
6+
VERSION_NAME=0.172.0
77
GROUP=com.facebook.flipper
88
SONATYPE_STAGING_PROFILE=comfacebook
99
POM_URL=https://github.com/facebook/flipper

js/js-flipper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "js-flipper",
33
"title": "JS Flipper Bindings for Web-Socket based clients",
4-
"version": "0.171.1",
4+
"version": "0.172.0",
55
"main": "lib/index.js",
66
"browser": {
77
"os": false

react-native/react-native-flipper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-flipper",
33
"title": "React Native Flipper Bindings",
4-
"version": "0.171.1",
4+
"version": "0.172.0",
55
"description": "Flipper bindings for React Native",
66
"main": "index.js",
77
"types": "index.d.ts",

0 commit comments

Comments
 (0)