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

Commit aef077f

Browse files
generatedunixname89002005306973facebook-github-bot
generatedunixname89002005306973
authored andcommitted
Flipper Release: v0.173.0
Summary: Releasing version 0.173.0 Reviewed By: lblasa Differential Revision: D40803306 fbshipit-source-id: 502ae3cb94994454c31aee05573ec1d43150862a
1 parent 3598fb2 commit aef077f

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-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.172.0",
172+
"version": "0.173.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.172.0'
30+
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.173.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.172.0'
11+
debugImplementation 'com.facebook.flipper:flipper-leakcanary2-plugin:0.173.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.172.0'
15+
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.173.0'
1616
}
1717
```
1818

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.172.0'
27+
debugImplementation 'com.facebook.flipper:flipper:0.173.0'
2828
debugImplementation 'com.facebook.soloader:soloader:0.10.4'
2929
30-
releaseImplementation 'com.facebook.flipper:flipper-noop:0.172.0'
30+
releaseImplementation 'com.facebook.flipper:flipper-noop:0.173.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.172.0' # should match the version of your Flipper client app
54+
flipperkit_version = '0.173.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.172.0`.
37+
1. Bump the `FLIPPER_VERSION` variable in `android/gradle.properties`, for example: `FLIPPER_VERSION=0.173.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.172.0' })`.
47+
1. Call `use_flipper` with a specific version in `ios/Podfile`, for example: `use_flipper!({ 'Flipper' => '0.173.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.172.1-SNAPSHOT
6+
VERSION_NAME=0.173.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.172.0",
4+
"version": "0.173.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.172.0",
4+
"version": "0.173.0",
55
"description": "Flipper bindings for React Native",
66
"main": "index.js",
77
"types": "index.d.ts",

0 commit comments

Comments
 (0)