Skip to content

Commit

Permalink
Merge branch 'develop-v2' into feature/sdk-1520-add-privacy-manifest-…
Browse files Browse the repository at this point in the history
…file-for-ios-v2-sdk
  • Loading branch information
1abhishekpandey authored Apr 8, 2024
2 parents 5d618fe + c3d40c8 commit 08080c0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-beta](https://github.com/rudderlabs/rudder-sdk-ios/compare/v2.4.3...v2.4.4-beta) (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)


Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<p align="center">
<a href="https://cocoapods.org/pods/Rudder">
<img src="https://img.shields.io/static/v1?label=pod&message=v2.4.3&color=blue&style=flat">
<img src="https://img.shields.io/static/v1?label=pod&message=v2.4.4-beta&color=blue&style=flat">
</a>
</p>

Expand Down Expand Up @@ -47,15 +47,15 @@ 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-beta'
```

### Carthage

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-beta"
```

> Remember to include the following code where you want to refer to or use the RudderStack SDK classes, as shown:
Expand Down Expand Up @@ -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 (`[email protected]: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-beta` as the value, as shown:

![Setting the dependency](https://user-images.githubusercontent.com/59817155/145574696-8c849749-13e0-40d5-aacb-3fccb5c8e67d.png)

Expand All @@ -113,7 +113,7 @@ let package = Package(
],
dependencies: [
// Dependencies declare other packages that this package depends on.
.package(url: "[email protected]:rudderlabs/rudder-sdk-ios.git", from: "2.4.3")
.package(url: "[email protected]: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.
Expand Down
2 changes: 1 addition & 1 deletion Sources/Classes/Common/Constants/RSVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
import Foundation

// don't edit this line
let RSVersion = "2.4.3"
let RSVersion = "2.4.4-beta"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.4.3",
"version": "2.4.4-beta",
"description": "Rudder is a platform for collecting, storing and routing customer event data to dozens of tools"
}
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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-beta

# Meta-data for the project
sonar.links.scm=https://github.com/rudderlabs/rudder-sdk-ios
Expand Down

0 comments on commit 08080c0

Please sign in to comment.