Skip to content

Commit 0633e5b

Browse files
generatedunixname89002005306973facebook-github-bot
generatedunixname89002005306973
authored andcommitted
Flipper Release: v0.75.1
Summary: Releasing version 0.75.1 Reviewed By: passy Differential Revision: D26422941 fbshipit-source-id: 655a898289c877b44a9c7bd3e359dcf045688988
1 parent f697239 commit 0633e5b

File tree

10 files changed

+16
-11
lines changed

10 files changed

+16
-11
lines changed

desktop/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flipper-project",
3-
"version": "0.75.0",
3+
"version": "0.75.1",
44
"description": "Mobile development tool",
55
"productName": "Flipper",
66
"author": {

desktop/static/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.75.1 (12/2/2021)
2+
3+
* [D26370235](https://github.com/facebook/flipper/search?q=D26370235&type=Commits) - Reduce spamminess of iOS connection warnings
4+
5+
16
# 0.75.0 (10/2/2021)
27

38
* [D26249575](https://github.com/facebook/flipper/search?q=D26249575&type=Commits) - CPU plugin will no longer show up for archived devices

docs/getting-started/android-native.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ repositories {
2626
}
2727
2828
dependencies {
29-
debugImplementation 'com.facebook.flipper:flipper:0.75.0'
29+
debugImplementation 'com.facebook.flipper:flipper:0.75.1'
3030
debugImplementation 'com.facebook.soloader:soloader:0.10.1'
3131
32-
releaseImplementation 'com.facebook.flipper:flipper-noop:0.75.0'
32+
releaseImplementation 'com.facebook.flipper:flipper-noop:0.75.1'
3333
}
3434
```
3535

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ In 0.62, the setup includes a bit more code (which was moved to a helper in 0.63
4949
platform :ios, '9.0'
5050

5151
def flipper_pods()
52-
flipperkit_version = '0.75.0' # should match the version of your Flipper client app
52+
flipperkit_version = '0.75.1' # should match the version of your Flipper client app
5353
pod 'FlipperKit', '~>' + flipperkit_version, :configuration => 'Debug'
5454
pod 'FlipperKit/FlipperKitLayoutPlugin', '~>' + flipperkit_version, :configuration => 'Debug'
5555
pod 'FlipperKit/SKIOSNetworkPlugin', '~>' + flipperkit_version, :configuration => 'Debug'

docs/getting-started/react-native.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ By default React Native might ship with an outdated Flipper SDK. To make sure yo
3232

3333
Android:
3434

35-
1. Bump the `FLIPPER_VERSION` variable in `android/gradle.properties`, for example: `FLIPPER_VERSION=0.75.0`.
35+
1. Bump the `FLIPPER_VERSION` variable in `android/gradle.properties`, for example: `FLIPPER_VERSION=0.75.1`.
3636
2. Run `./gradlew clean` in the `android` directory.
3737

3838
iOS:
3939

40-
1. Call `use_flipper` with a specific version in `ios/Podfile`, for example: `use_flipper!({ 'Flipper' => '0.75.0' })`.
40+
1. Call `use_flipper` with a specific version in `ios/Podfile`, for example: `use_flipper!({ 'Flipper' => '0.75.1' })`.
4141
2. Run `pod install` in the `ios` directory.
4242

4343
## Manual Setup

docs/setup/layout-plugin.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ gradle configuration:
3131

3232
```groovy
3333
dependencies {
34-
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.75.0'
34+
debugImplementation 'com.facebook.flipper:flipper-litho-plugin:0.75.1'
3535
debugImplementation 'com.facebook.litho:litho-annotations:0.19.0'
3636
// ...
3737
}

docs/setup/leak-canary-plugin.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Ensure that you already have an explicit dependency in your application's
99

1010
```groovy
1111
dependencies {
12-
debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.75.0'
12+
debugImplementation 'com.facebook.flipper:flipper-leakcanary-plugin:0.75.1'
1313
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1'
1414
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1'
1515
}

docs/setup/network-plugin.mdx

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

1616
```groovy
1717
dependencies {
18-
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.75.0'
18+
debugImplementation 'com.facebook.flipper:flipper-network-plugin:0.75.1'
1919
}
2020
```
2121

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# LICENSE file in the root directory of this source tree.
55

66
# POM publishing constants
7-
VERSION_NAME=0.75.1-SNAPSHOT
7+
VERSION_NAME=0.75.1
88
GROUP=com.facebook.flipper
99
SONATYPE_STAGING_PROFILE=comfacebook
1010
POM_URL=https://github.com/facebook/flipper

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.75.0",
4+
"version": "0.75.1",
55
"description": "Flipper bindings for React Native",
66
"main": "index.js",
77
"types": "index.d.ts",

0 commit comments

Comments
 (0)