diff --git a/CHANGELOG.md b/CHANGELOG.md index 1697a940..21cffb28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [1.19.2](https://github.com/rudderlabs/rudder-sdk-ios/compare/v1.19.1...v1.19.2) (2023-08-28) + + +### Bug Fixes + +* db encryption improvements ([#375](https://github.com/rudderlabs/rudder-sdk-ios/issues/375)) ([18ba785](https://github.com/rudderlabs/rudder-sdk-ios/commit/18ba7856d918b15d36f0e7c8916dd4d57f15b51b)) +* renamed extern string of metrics ([#376](https://github.com/rudderlabs/rudder-sdk-ios/issues/376)) ([902d77f](https://github.com/rudderlabs/rudder-sdk-ios/commit/902d77fe34d99e0e7792804b8d3a28bcbfc27378)) +* spm build is failing for missing dependency ([#373](https://github.com/rudderlabs/rudder-sdk-ios/issues/373)) ([d478c23](https://github.com/rudderlabs/rudder-sdk-ios/commit/d478c23de1e671d2d112ab1ab8181d55064ed427)) + ### [1.19.1](https://github.com/rudderlabs/rudder-sdk-ios/compare/v1.19.0...v1.19.1) (2023-08-23) diff --git a/README.md b/README.md index 62099f4c..a37c9ec9 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@
@@ -39,7 +39,7 @@ The iOS SDK is available through [**CocoaPods**](https://cocoapods.org), [**Cart To install the SDK, simply add the following line to your Podfile: ```xcode -pod 'Rudder', '1.19.1' +pod 'Rudder', '1.19.2' ``` ### Carthage @@ -47,7 +47,7 @@ pod 'Rudder', '1.19.1' For Carthage support, add the following line to your `Cartfile`: ```xcode -github "rudderlabs/rudder-sdk-ios" "v1.19.1" +github "rudderlabs/rudder-sdk-ios" "v1.19.2" ``` > Remember to include the following code in all `.m` and `.h` files where you want to refer to or use the RudderStack SDK classes, as shown: @@ -71,7 +71,7 @@ You can also add the RudderStack iOS SDK via Swift Package Mangaer, via one of t * Enter the package repository (`git@github.com:rudderlabs/rudder-sdk-ios.git`) in the search bar. -* In **Dependency Rule**, select **Up to Next Major Version** and enter `1.19.1` as the value, as shown: +* In **Dependency Rule**, select **Up to Next Major Version** and enter `1.19.2` as the value, as shown: ![Setting dependency](https://user-images.githubusercontent.com/59817155/145574696-8c849749-13e0-40d5-aacb-3fccb5c8e67d.png) @@ -99,7 +99,7 @@ let package = Package( ], dependencies: [ // Dependencies declare other packages that this package depends on. - .package(url: "git@github.com:rudderlabs/rudder-sdk-ios.git", from: "1.19.1") + .package(url: "git@github.com:rudderlabs/rudder-sdk-ios.git", from: "1.19.2") ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. diff --git a/Sources/Classes/Headers/RSVersion.h b/Sources/Classes/Headers/RSVersion.h index f9bfbc6c..79cf58fe 100644 --- a/Sources/Classes/Headers/RSVersion.h +++ b/Sources/Classes/Headers/RSVersion.h @@ -8,6 +8,6 @@ #ifndef RSVersion_h #define RSVersion_h -NSString *const SDK_VERSION = @"1.19.1"; +NSString *const SDK_VERSION = @"1.19.2"; #endif /* RSVersion_h */ diff --git a/package.json b/package.json index cad159b6..8f9253d5 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,4 @@ { - "version": "1.19.1", + "version": "1.19.2", "description": "Rudder is a platform for collecting, storing and routing customer event data to dozens of tools" } diff --git a/sonar-project.properties b/sonar-project.properties index b960fa65..e9f2cccd 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -6,7 +6,7 @@ sonar.qualitygate.wait=false sonar.projectKey=rudderlabs_rudder-sdk-ios sonar.organization=rudderlabs sonar.projectName=RudderStack iOS SDK -sonar.projectVersion=1.19.1 +sonar.projectVersion=1.19.2 # C/C++/Objective-C related details # sonar.cfamily.compile-commands=compile_commands.json