diff --git a/README.md b/README.md index b7627a7f35..18bc0a44f8 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ![WhirlyGlobe-Maply](/common/images/banner.jpg) [![Apache v2](https://img.shields.io/badge/License-Apache%202-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0.html) -[![Release 3.4](https://img.shields.io/badge/Release-3.4-blue.svg)](https://github.com/mousebird-consulting-inc/WhirlyGlobe/releases) +[![Release 3.5](https://img.shields.io/badge/Release-3.5-blue.svg)](https://github.com/mousebird-consulting-inc/WhirlyGlobe/releases) ![Platform iOS+Android](https://img.shields.io/badge/Platform-%20iOS%20%7c%20Android-blue.svg) [![Open Issues](https://img.shields.io/github/issues/mousebird-consulting-inc/WhirlyGlobe.svg?color=blue)](https://github.com/mousebird-consulting-inc/WhirlyGlobe/issues) [![Closed Issues](https://img.shields.io/github/issues-closed/mousebird-consulting-inc/WhirlyGlobe.svg?color=blue)](https://github.com/mousebird-consulting-inc/WhirlyGlobe/issues?q=is%3Aissue+is%3Aclosed) @@ -51,7 +51,7 @@ Want more detail? Go read the [Tutorials](http://mousebird-consulting-inc.github Breaking Changes --- -If you're upgrading from 3.4, you will need to make some adjustments due to the switch to xcframework and modular headers: +If you're upgrading from 3.3, you will need to make some adjustments due to the switch to xcframework and modular headers: - When embedding the framework as is done in AutoTester, Swift no longer automatically imports the module because it doesn't match the project name. You will need an additional `import WhirlyGlobe` at the top of Swift files using the API. - If you're including header files from Obj-C++ code, you'll need to use the modular include style, `#import `, and using quoted includes will produce a compile error. diff --git a/android/library/maply/src/main/java/com/mousebird/maply/BaseController.java b/android/library/maply/src/main/java/com/mousebird/maply/BaseController.java index bd24cc79dc..acec7d4735 100644 --- a/android/library/maply/src/main/java/com/mousebird/maply/BaseController.java +++ b/android/library/maply/src/main/java/com/mousebird/maply/BaseController.java @@ -538,7 +538,7 @@ private void startAnalytics() String bundleVersion = pInfo.versionName; String osversion = "Android " + Build.VERSION.RELEASE; String model = Build.MANUFACTURER + " " + Build.MODEL; - String wgMaplyVersion = "3.4"; + String wgMaplyVersion = "3.5"; String json = String.format( "{ \"userid\":\"%s\", \"bundleid\":\"%s\", \"bundlename\":\"%s\", \"bundlebuild\":\"%s\", \"bundleversion\":\"%s\", \"osversion\":\"%s\", \"model\":\"%s\", \"wgmaplyversion\":\"%s\" }", userID, bundleID, bundleName, bundleBuild, bundleVersion, osversion, model, wgMaplyVersion); diff --git a/ios/library/WhirlyGlobe-MaplyComponent/src/control/MaplyBaseViewController.mm b/ios/library/WhirlyGlobe-MaplyComponent/src/control/MaplyBaseViewController.mm index d4138ecd3d..9067f086ce 100644 --- a/ios/library/WhirlyGlobe-MaplyComponent/src/control/MaplyBaseViewController.mm +++ b/ios/library/WhirlyGlobe-MaplyComponent/src/control/MaplyBaseViewController.mm @@ -246,7 +246,7 @@ - (void)sendAnalytics:(NSString *)serverName NSString *build = infoDict[@"CFBundleVersion"]; NSString *bundleVersion = infoDict[@"CFBundleShortVersionString"]; // WGMaply version - NSString *wgmaplyVersion = @"3.4"; + NSString *wgmaplyVersion = @"3.5"; // OS version NSOperatingSystemVersion osversionID = [[NSProcessInfo processInfo] operatingSystemVersion]; NSString *osversion = [NSString stringWithFormat:@"%d.%d.%d",(int)osversionID.majorVersion,(int)osversionID.minorVersion,(int) osversionID.patchVersion];