diff --git a/CHANGELOG.md b/CHANGELOG.md index 87619e9..5ed98cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ ## Unreleased +## 0.11.1 + +- [iOS] Fix iPhoneX issues related to status bar height + ## 0.11.0 - Use latest React Native diff --git a/android/app/build.gradle b/android/app/build.gradle index 81b0869..ba52bed 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -99,8 +99,8 @@ android { applicationId "com.ghubber" minSdkVersion 16 targetSdkVersion 22 - versionCode 16 - versionName "0.11.0" + versionCode 17 + versionName "0.11.1" ndk { abiFilters "armeabi-v7a", "x86" diff --git a/ios/ghubber.xcodeproj/project.pbxproj b/ios/ghubber.xcodeproj/project.pbxproj index 9555c69..777f45e 100644 --- a/ios/ghubber.xcodeproj/project.pbxproj +++ b/ios/ghubber.xcodeproj/project.pbxproj @@ -1131,7 +1131,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = ghubber/ghubber.entitlements; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 16; + CURRENT_PROJECT_VERSION = 17; DEAD_CODE_STRIPPING = NO; DEVELOPMENT_TEAM = 6C9GJM4M9M; HEADER_SEARCH_PATHS = ( @@ -1160,7 +1160,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = ghubber/ghubber.entitlements; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 16; + CURRENT_PROJECT_VERSION = 17; DEVELOPMENT_TEAM = 6C9GJM4M9M; HEADER_SEARCH_PATHS = ( "$(inherited)", diff --git a/ios/ghubber/Info.plist b/ios/ghubber/Info.plist index 082210b..127d893 100644 --- a/ios/ghubber/Info.plist +++ b/ios/ghubber/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.11.0 + 0.11.1 CFBundleSignature ???? CFBundleURLTypes @@ -34,7 +34,7 @@ CFBundleVersion - 16 + 17 LSApplicationCategoryType public.app-category.developer-tools LSRequiresIPhoneOS @@ -51,7 +51,7 @@ NSLocationWhenInUseUsageDescription - + NSMainNibFile LaunchScreen NSMainNibFile~ipad diff --git a/ios/ghubberTests/Info.plist b/ios/ghubberTests/Info.plist index db43100..5c3b8ba 100644 --- a/ios/ghubberTests/Info.plist +++ b/ios/ghubberTests/Info.plist @@ -15,10 +15,10 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 0.11.0 + 0.11.1 CFBundleSignature ???? CFBundleVersion - 16 + 17 diff --git a/package-lock.json b/package-lock.json index 1f7dc9e..42aefdc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "ghubber", - "version": "0.11.0", + "version": "0.11.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c099fab..7a7496b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ghubber", - "version": "0.11.0", + "version": "0.11.1", "private": true, "scripts": { "start": "node node_modules/react-native/local-cli/cli.js start --reset-cache",