Skip to content

Commit

Permalink
Bump versions to 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
TimSylvester committed Apr 8, 2022
1 parent 8a3c1ae commit bab1fdf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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 <WhirlyGlobe/Header.h>`, and using quoted includes will produce a compile error.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit bab1fdf

Please sign in to comment.