diff --git a/Cartfile b/Cartfile
index d092d34414..c444890f3c 100644
--- a/Cartfile
+++ b/Cartfile
@@ -1,2 +1,2 @@
-binary "https://api.mapbox.com/downloads/v2/carthage/mobile-maps-gl-core/mapbox-ios-sdk-gl-core-static.json" == 1.7.0
+binary "https://api.mapbox.com/downloads/v2/carthage/mobile-maps-gl-core/mapbox-ios-sdk-gl-core-static.json" == 1.8.1
github "mapbox/mapbox-events-ios" ~> 0.10
\ No newline at end of file
diff --git a/Cartfile.resolved b/Cartfile.resolved
index cb0b97d283..9c64a986fb 100644
--- a/Cartfile.resolved
+++ b/Cartfile.resolved
@@ -1,2 +1,2 @@
-binary "https://api.mapbox.com/downloads/v2/carthage/mobile-maps-gl-core/mapbox-ios-sdk-gl-core-static.json" "1.7.0"
+binary "https://api.mapbox.com/downloads/v2/carthage/mobile-maps-gl-core/mapbox-ios-sdk-gl-core-static.json" "1.8.1"
github "mapbox/mapbox-events-ios" "v0.10.2"
diff --git a/platform/ios/CHANGELOG.md b/platform/ios/CHANGELOG.md
index 1705f4324a..bebc071173 100644
--- a/platform/ios/CHANGELOG.md
+++ b/platform/ios/CHANGELOG.md
@@ -2,7 +2,7 @@
Mapbox welcomes participation and contributions from everyone. Please read [CONTRIBUTING.md](../../CONTRIBUTING.md) to get started.
-## 5.10.0-alpha.1
+## 5.10.0-beta.1
Starting this release, the Mapbox Maps SDK for iOS will use a pre-built GL Native binary licensed under the [Mapbox Terms of Service](https://www.mapbox.com/legal/tos). The license of the Maps SDK for iOS remains BSD-2. For more information on using this and future releases, see [README.md](https://github.com/mapbox/mapbox-gl-native-iOS/blob/master/README.md). For more details on licensing, see [LICENSE.md](https://github.com/mapbox/mapbox-gl-native-iOS/blob/master/LICENSE.md).
### ✨ New features
@@ -12,6 +12,7 @@ Starting this release, the Mapbox Maps SDK for iOS will use a pre-built GL Nativ
### 🐞 Bug fixes
* Fixed an issue where symbols flickered when zooming out. ([mapbox/mapbox-gl-native#16471](https://github.com/mapbox/mapbox-gl-native/issues/16471), [#273](https://github.com/mapbox/mapbox-gl-native-ios/issues/273))
* Fixed a potential crash when switching from a style with many layers to an empty style. ([mapbox/mapbox-gl-native#16480](https://github.com/mapbox/mapbox-gl-native/issues/16480))
+* Fixed a potential memory leak when using VoiceOver. ([mapbox/mapbox-gl-native-ios#318](https://github.com/mapbox/mapbox-gl-native-ios/pull/318))
## 5.9.0
diff --git a/platform/ios/Integration Test Harness/Info.plist b/platform/ios/Integration Test Harness/Info.plist
index 21e2f17d5e..6f46680d63 100644
--- a/platform/ios/Integration Test Harness/Info.plist
+++ b/platform/ios/Integration Test Harness/Info.plist
@@ -19,7 +19,7 @@
CFBundleShortVersionString
5.10.0
CFBundleVersion
- 15257
+ 15258
LSRequiresIPhoneOS
UILaunchStoryboardName
diff --git a/platform/ios/Integration Tests/Info.plist b/platform/ios/Integration Tests/Info.plist
index fbf2b688fc..fbb2e4a6e2 100644
--- a/platform/ios/Integration Tests/Info.plist
+++ b/platform/ios/Integration Tests/Info.plist
@@ -17,6 +17,6 @@
CFBundleShortVersionString
5.10.0
CFBundleVersion
- 15257
+ 15258
diff --git a/platform/ios/Mapbox-iOS-SDK-snapshot-dynamic.podspec b/platform/ios/Mapbox-iOS-SDK-snapshot-dynamic.podspec
index 4645743778..7a99db11ad 100644
--- a/platform/ios/Mapbox-iOS-SDK-snapshot-dynamic.podspec
+++ b/platform/ios/Mapbox-iOS-SDK-snapshot-dynamic.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |m|
- version = '5.10.0-alpha.1'
+ version = '5.10.0-beta.1'
m.name = 'Mapbox-iOS-SDK-snapshot-dynamic'
m.version = "#{version}-snapshot"
diff --git a/platform/ios/Mapbox-iOS-SDK-stripped.podspec b/platform/ios/Mapbox-iOS-SDK-stripped.podspec
index 4f655eb6ec..c14912c91e 100644
--- a/platform/ios/Mapbox-iOS-SDK-stripped.podspec
+++ b/platform/ios/Mapbox-iOS-SDK-stripped.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |m|
- version = '5.10.0-alpha.1'
+ version = '5.10.0-beta.1'
m.name = 'Mapbox-iOS-SDK-stripped'
m.version = "#{version}-stripped"
diff --git a/platform/ios/Mapbox-iOS-SDK.podspec b/platform/ios/Mapbox-iOS-SDK.podspec
index 59762156d2..452d98a5b9 100644
--- a/platform/ios/Mapbox-iOS-SDK.podspec
+++ b/platform/ios/Mapbox-iOS-SDK.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |m|
- version = '5.10.0-alpha.1'
+ version = '5.10.0-beta.1'
m.name = 'Mapbox-iOS-SDK'
m.version = version
diff --git a/platform/ios/app/Info.plist b/platform/ios/app/Info.plist
index c9c8420b8b..8e64a75150 100644
--- a/platform/ios/app/Info.plist
+++ b/platform/ios/app/Info.plist
@@ -21,7 +21,7 @@
CFBundleSignature
MBGL
CFBundleVersion
- 15257
+ 15258
LSRequiresIPhoneOS
NSHumanReadableCopyright
diff --git a/platform/ios/benchmark/Info.plist b/platform/ios/benchmark/Info.plist
index e4b6158e19..6c6eb45313 100644
--- a/platform/ios/benchmark/Info.plist
+++ b/platform/ios/benchmark/Info.plist
@@ -21,7 +21,7 @@
CFBundleSignature
MBGL
CFBundleVersion
- 15257
+ 15258
LSRequiresIPhoneOS
NSHumanReadableCopyright
diff --git a/platform/ios/framework/Info-static.plist b/platform/ios/framework/Info-static.plist
index c79e057ba9..92265c5bec 100644
--- a/platform/ios/framework/Info-static.plist
+++ b/platform/ios/framework/Info-static.plist
@@ -15,7 +15,7 @@
CFBundleSignature
????
CFBundleVersion
- 15257
+ 15258
MGLCommitHash
$(CURRENT_COMMIT_HASH)
MGLSemanticVersionString
diff --git a/platform/ios/framework/Info.plist b/platform/ios/framework/Info.plist
index 51e10778b8..99fe2828c5 100644
--- a/platform/ios/framework/Info.plist
+++ b/platform/ios/framework/Info.plist
@@ -19,7 +19,7 @@
CFBundleSignature
????
CFBundleVersion
- 15257
+ 15258
MGLCommitHash
$(CURRENT_COMMIT_HASH)
MGLSemanticVersionString
diff --git a/platform/ios/ios.xcodeproj/project.pbxproj b/platform/ios/ios.xcodeproj/project.pbxproj
index bb6f51e040..4b40f48958 100644
--- a/platform/ios/ios.xcodeproj/project.pbxproj
+++ b/platform/ios/ios.xcodeproj/project.pbxproj
@@ -3676,7 +3676,7 @@
CLANG_ENABLE_MODULES = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = 15257;
+ CURRENT_PROJECT_VERSION = 15258;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
GCC_PREPROCESSOR_DEFINITIONS = "";
@@ -3729,7 +3729,7 @@
CODE_SIGN_STYLE = Automatic;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 15257;
+ DYLIB_CURRENT_VERSION = 15258;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1";
INFOPLIST_FILE = framework/Info.plist;
@@ -3751,7 +3751,7 @@
buildSettings = {
BITCODE_GENERATION_MODE = bitcode;
DEFINES_MODULE = YES;
- DYLIB_CURRENT_VERSION = 15257;
+ DYLIB_CURRENT_VERSION = 15258;
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
@@ -3873,7 +3873,7 @@
CLANG_ENABLE_MODULES = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = 15257;
+ CURRENT_PROJECT_VERSION = 15258;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_TESTABILITY = YES;
GCC_OPTIMIZATION_LEVEL = 0;
@@ -3897,7 +3897,7 @@
CLANG_ENABLE_MODULES = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
- CURRENT_PROJECT_VERSION = 15257;
+ CURRENT_PROJECT_VERSION = 15258;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
GCC_PREPROCESSOR_DEFINITIONS = "";
@@ -4015,7 +4015,7 @@
CODE_SIGN_STYLE = Automatic;
DEFINES_MODULE = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 15257;
+ DYLIB_CURRENT_VERSION = 15258;
DYLIB_INSTALL_NAME_BASE = "@rpath";
INFOPLIST_FILE = framework/Info.plist;
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
@@ -4041,7 +4041,7 @@
DEFINES_MODULE = YES;
DEPLOYMENT_POSTPROCESSING = YES;
DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 15257;
+ DYLIB_CURRENT_VERSION = 15258;
DYLIB_INSTALL_NAME_BASE = "@rpath";
GCC_PREPROCESSOR_DEFINITIONS = "NDEBUG=1";
INFOPLIST_FILE = framework/Info.plist;
@@ -4086,7 +4086,7 @@
buildSettings = {
BITCODE_GENERATION_MODE = bitcode;
DEFINES_MODULE = YES;
- DYLIB_CURRENT_VERSION = 15257;
+ DYLIB_CURRENT_VERSION = 15258;
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
@@ -4111,7 +4111,7 @@
BITCODE_GENERATION_MODE = bitcode;
DEFINES_MODULE = YES;
DEPLOYMENT_POSTPROCESSING = YES;
- DYLIB_CURRENT_VERSION = 15257;
+ DYLIB_CURRENT_VERSION = 15258;
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
diff --git a/platform/ios/test/Info.plist b/platform/ios/test/Info.plist
index c2dae2ac54..f21fa3e3ee 100644
--- a/platform/ios/test/Info.plist
+++ b/platform/ios/test/Info.plist
@@ -19,6 +19,6 @@
CFBundleSignature
????
CFBundleVersion
- 15257
+ 15258