From 8f87c48562ab73f61201ba883e20f4143c03f89c Mon Sep 17 00:00:00 2001 From: mtehver Date: Mon, 30 Aug 2021 16:37:40 +0300 Subject: [PATCH] Changelog for 4.4.1 final, doc update --- NEWS.md | 10 ++++++++++ docs/guides/01-getting-started.md | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 5b7ba73c9..886154644 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,13 @@ +CARTO Mobile SDK 4.4.1 +------------------- + +### Changes, fixes: + +* Set minimum target to iOS 10 for i386 simulator target (due to thread_local not supported on iOS 9) +* Added libc++, libz dependencies to modulemap of iOS framework +* Updated build scripts to support building Swift Packages of the SDK + + CARTO Mobile SDK 4.4.1RC2 ------------------- diff --git a/docs/guides/01-getting-started.md b/docs/guides/01-getting-started.md index 2faa30538..b19ea3d0f 100644 --- a/docs/guides/01-getting-started.md +++ b/docs/guides/01-getting-started.md @@ -20,7 +20,7 @@ You can find detailed instructions on [API Keys page](../API-keys/) // use the latest version number from https://github.com/CartoDB/mobile-sdk/releases dependencies { - compile 'com.carto:carto-mobile-sdk:4.4.0@aar' + compile 'com.carto:carto-mobile-sdk:4.4.1@aar' } {% endhighlight %} @@ -215,7 +215,7 @@ You can find detailed instructions on [API Keys page](../API-keys/) // Add to your CocoaPods Podfile: // use the latest version number from https://github.com/CartoDB/mobile-sdk/releases - pod 'CartoMobileSDK', '4.4.0' + pod 'CartoMobileSDK', '4.4.1' {% endhighlight %}