From 4f30b38846fcfb565cd7a9f54588bc84da1d4924 Mon Sep 17 00:00:00 2001 From: GitHub actions Date: Fri, 5 Apr 2024 13:25:36 +0000 Subject: [PATCH 1/2] chore(release): 2.4.4 --- CHANGELOG.md | 7 +++++++ README.md | 10 +++++----- Sources/Classes/Common/Constants/RSVersion.swift | 2 +- package.json | 2 +- sonar-project.properties | 2 +- 5 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 796e318b..2157614f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ 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. +### [2.4.4](https://github.com/rudderlabs/rudder-sdk-ios/compare/v2.4.3...v2.4.4) (2024-04-05) + + +### Bug Fixes + +* fix swift name mangling for SwiftUI hosting controllers ([#475](https://github.com/rudderlabs/rudder-sdk-ios/issues/475)) ([dbb04b5](https://github.com/rudderlabs/rudder-sdk-ios/commit/dbb04b5481e6aae0e801a29664846bcbba2a76de)) + ### [2.4.3](https://github.com/rudderlabs/rudder-sdk-ios/compare/v2.4.2...v2.4.3) (2024-01-18) diff --git a/README.md b/README.md index cab6fcbe..0cdc8dcc 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@

- +

@@ -47,7 +47,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', '2.4.3' +pod 'Rudder', '2.4.4' ``` ### Carthage @@ -55,7 +55,7 @@ pod 'Rudder', '2.4.3' For Carthage support, add the following line to your `Cartfile`: ```xcode -github "rudderlabs/rudder-sdk-ios" "v2.4.3" +github "rudderlabs/rudder-sdk-ios" "v2.4.4" ``` > Remember to include the following code where you want to refer to or use the RudderStack SDK classes, as shown: @@ -86,7 +86,7 @@ You can also add the RudderStack SDK using the Swift Package Mangaer in one of t ![Adding a package](https://user-images.githubusercontent.com/59817155/140903027-286a1d64-f5d5-4041-9827-47b6cef76a46.png) 2. Enter the package repository (`git@github.com:rudderlabs/rudder-sdk-ios.git`) in the search bar. -3. In **Dependency Rule**, select **Up to Next Major Version**, and enter `2.4.3` as the value, as shown: +3. In **Dependency Rule**, select **Up to Next Major Version**, and enter `2.4.4` as the value, as shown: ![Setting the dependency](https://user-images.githubusercontent.com/59817155/145574696-8c849749-13e0-40d5-aacb-3fccb5c8e67d.png) @@ -113,7 +113,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: "2.4.3") + .package(url: "git@github.com:rudderlabs/rudder-sdk-ios.git", from: "2.4.4") ], 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/Common/Constants/RSVersion.swift b/Sources/Classes/Common/Constants/RSVersion.swift index 44694694..8940a533 100644 --- a/Sources/Classes/Common/Constants/RSVersion.swift +++ b/Sources/Classes/Common/Constants/RSVersion.swift @@ -9,4 +9,4 @@ import Foundation // don't edit this line -let RSVersion = "2.4.3" +let RSVersion = "2.4.4" diff --git a/package.json b/package.json index 96c79661..908daad1 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,4 @@ { - "version": "2.4.3", + "version": "2.4.4", "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 8120f31d..38a0a75d 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -6,7 +6,7 @@ sonar.qualitygate.wait=false sonar.projectKey=rudderlabs_rudder-sdk-ios-v2 sonar.organization=rudderlabs sonar.projectName=RudderStack iOS SDK(v2) -sonar.projectVersion=2.4.3 +sonar.projectVersion=2.4.4 # Meta-data for the project sonar.links.scm=https://github.com/rudderlabs/rudder-sdk-ios From c7f9466908b000da9bdf066af51deb5d6231a9a3 Mon Sep 17 00:00:00 2001 From: Desu Sai Venkat Date: Mon, 8 Apr 2024 11:30:19 +0530 Subject: [PATCH 2/2] chore: changed version to 2.4.4-beta --- CHANGELOG.md | 2 +- README.md | 10 +++++----- Sources/Classes/Common/Constants/RSVersion.swift | 2 +- package.json | 2 +- sonar-project.properties | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2157614f..2cb32d2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ 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. -### [2.4.4](https://github.com/rudderlabs/rudder-sdk-ios/compare/v2.4.3...v2.4.4) (2024-04-05) +### [2.4.4-beta](https://github.com/rudderlabs/rudder-sdk-ios/compare/v2.4.3...v2.4.4-beta) (2024-04-05) ### Bug Fixes diff --git a/README.md b/README.md index 0cdc8dcc..7b47bc9b 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@

- +

@@ -47,7 +47,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', '2.4.4' +pod 'Rudder', '2.4.4-beta' ``` ### Carthage @@ -55,7 +55,7 @@ pod 'Rudder', '2.4.4' For Carthage support, add the following line to your `Cartfile`: ```xcode -github "rudderlabs/rudder-sdk-ios" "v2.4.4" +github "rudderlabs/rudder-sdk-ios" "v2.4.4-beta" ``` > Remember to include the following code where you want to refer to or use the RudderStack SDK classes, as shown: @@ -86,7 +86,7 @@ You can also add the RudderStack SDK using the Swift Package Mangaer in one of t ![Adding a package](https://user-images.githubusercontent.com/59817155/140903027-286a1d64-f5d5-4041-9827-47b6cef76a46.png) 2. Enter the package repository (`git@github.com:rudderlabs/rudder-sdk-ios.git`) in the search bar. -3. In **Dependency Rule**, select **Up to Next Major Version**, and enter `2.4.4` as the value, as shown: +3. In **Dependency Rule**, select **Up to Next Major Version**, and enter `2.4.4-beta` as the value, as shown: ![Setting the dependency](https://user-images.githubusercontent.com/59817155/145574696-8c849749-13e0-40d5-aacb-3fccb5c8e67d.png) @@ -113,7 +113,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: "2.4.4") + .package(url: "git@github.com:rudderlabs/rudder-sdk-ios.git", from: "2.4.4-beta") ], 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/Common/Constants/RSVersion.swift b/Sources/Classes/Common/Constants/RSVersion.swift index 8940a533..06194c1a 100644 --- a/Sources/Classes/Common/Constants/RSVersion.swift +++ b/Sources/Classes/Common/Constants/RSVersion.swift @@ -9,4 +9,4 @@ import Foundation // don't edit this line -let RSVersion = "2.4.4" +let RSVersion = "2.4.4-beta" diff --git a/package.json b/package.json index 908daad1..24c6388e 100644 --- a/package.json +++ b/package.json @@ -1,4 +1,4 @@ { - "version": "2.4.4", + "version": "2.4.4-beta", "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 38a0a75d..0ceb6862 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -6,7 +6,7 @@ sonar.qualitygate.wait=false sonar.projectKey=rudderlabs_rudder-sdk-ios-v2 sonar.organization=rudderlabs sonar.projectName=RudderStack iOS SDK(v2) -sonar.projectVersion=2.4.4 +sonar.projectVersion=2.4.4-beta # Meta-data for the project sonar.links.scm=https://github.com/rudderlabs/rudder-sdk-ios