From 9ffca9d049e48ae4c76d138c5e193d4834f878fa Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Wed, 25 Sep 2019 01:59:50 -0700 Subject: [PATCH] Flipper Release: v0.24.2 Summary: Another quick fix for https://github.com/facebook/flipper/issues/546#issuecomment-534697210 Includes the new SoLoader bump. Reviewed By: jknoxville Differential Revision: D17558480 fbshipit-source-id: 02eab2bea20d31e082423f32201c6b110e9fabe2 --- Flipper.podspec | 2 +- FlipperKit.podspec | 2 +- docs/getting-started.md | 8 ++++---- gradle.properties | 2 +- iOS/Tutorial/Podfile | 2 +- package.json | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Flipper.podspec b/Flipper.podspec index db393178b..af9ec88c6 100644 --- a/Flipper.podspec +++ b/Flipper.podspec @@ -1,4 +1,4 @@ -flipperkit_version = '0.24.1' +flipperkit_version = '0.24.2' Pod::Spec.new do |spec| spec.name = 'Flipper' spec.version = flipperkit_version diff --git a/FlipperKit.podspec b/FlipperKit.podspec index 320f2c452..15d55e9b5 100644 --- a/FlipperKit.podspec +++ b/FlipperKit.podspec @@ -1,6 +1,6 @@ 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.14' -flipperkit_version = '0.24.1' +flipperkit_version = '0.24.2' Pod::Spec.new do |spec| spec.name = 'FlipperKit' spec.version = flipperkit_version diff --git a/docs/getting-started.md b/docs/getting-started.md index c1b985c97..881278af1 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -50,10 +50,10 @@ repositories { } dependencies { - debugImplementation 'com.facebook.flipper:flipper:0.24.1' + debugImplementation 'com.facebook.flipper:flipper:0.24.2' debugImplementation 'com.facebook.soloader:soloader:0.5.1' - releaseImplementation 'com.facebook.flipper:flipper-noop:0.24.1' + releaseImplementation 'com.facebook.flipper:flipper-noop:0.24.2' } ``` @@ -111,7 +111,7 @@ We support both Swift and Objective-C for Flipper with CocoaPods as build and di ```ruby project 'MyApp.xcodeproj' -flipperkit_version = '0.24.1' +flipperkit_version = '0.24.2' target 'MyApp' do platform :ios, '9.0' @@ -171,7 +171,7 @@ end ```ruby project 'MyApp.xcodeproj' -flipperkit_version = '0.24.1' +flipperkit_version = '0.24.2' target 'MyApp' do platform :ios, '9.0' diff --git a/gradle.properties b/gradle.properties index efc98d2d1..5b5565f4e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ # in the root directory of this source tree. # POM publishing constants -VERSION_NAME=0.24.2-SNAPSHOT +VERSION_NAME=0.24.2 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 b101e6f08..7a8438819 100644 --- a/iOS/Tutorial/Podfile +++ b/iOS/Tutorial/Podfile @@ -1,6 +1,6 @@ project 'Tutorial.xcodeproj' swift_version = "4.1" -flipperkit_version = '0.24.1' +flipperkit_version = '0.24.2' use_frameworks! target 'Tutorial' do diff --git a/package.json b/package.json index f22c8ae07..2be1fee0f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "flipper", - "version": "0.24.1", + "version": "0.24.2", "versionDate": "2018-4-12", "description": "Mobile development tool", "productName": "Flipper",