Skip to content

Commit a117ad5

Browse files
[FSSDK-10944] chore: prepare for release 5.0.0 (#566)
* prepare release 5.0.0
1 parent a1eb3ff commit a117ad5

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

.github/workflows/source_clear_cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
source_clear:
12-
runs-on: macos-12
12+
runs-on: macos-13
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: Source clear scan

.github/workflows/swift.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
description: release
1818

1919
env:
20-
VERSION: 4.1.0
20+
VERSION: 5.0.0
2121

2222
jobs:
2323

@@ -32,7 +32,7 @@ jobs:
3232
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}
3333

3434
lint:
35-
runs-on: macos-12
35+
runs-on: macos-13
3636
steps:
3737
- uses: actions/checkout@v3
3838
- uses: maxim-lobanov/setup-xcode@v1
@@ -50,7 +50,7 @@ jobs:
5050
uses: optimizely/swift-sdk/.github/workflows/unit_tests.yml@master
5151

5252
prepare_for_release:
53-
runs-on: macos-12
53+
runs-on: macos-13
5454
if: "${{ github.event.inputs.PREP == 'true' && github.event_name == 'workflow_dispatch' }}"
5555
steps:
5656
- uses: actions/checkout@v3
@@ -79,7 +79,7 @@ jobs:
7979

8080
release:
8181
if: "${{github.event.inputs.RELEASE == 'true' && github.event_name == 'workflow_dispatch' }}"
82-
runs-on: macos-12
82+
runs-on: macos-13
8383
steps:
8484
- uses: actions/checkout@v3
8585
- uses: maxim-lobanov/setup-xcode@v1

.github/workflows/unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ env:
77

88
jobs:
99
unittests:
10-
runs-on: macos-12
10+
runs-on: macos-13
1111
strategy:
1212
fail-fast: false
1313
matrix:

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Optimizely Swift SDK Changelog
22

3+
## 5.0.0
4+
November 25th, 2024
5+
6+
### Breaking Changes
7+
* VUID configuration is now independent of ODP ([#456](https://github.com/optimizely/swift-sdk/pull/556))
8+
* When VUID is disabled:
9+
* `vuid` is not generated or saved.
10+
* `client-initialized` event will not auto fired on SDK init.
11+
* `vuid` is not included in the odp events as a default attribute.
12+
* `createUserContext()` will be rejected if `userId` is not provided.
13+
314
## 4.1.0
415
November 8, 2024
516

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ If you have a name conflict with other swift packages when you add the Optimizel
3939
#### CocoaPods
4040
1. Add the following lines to the _Podfile_:<pre>
4141
```use_frameworks!```
42-
```pod 'OptimizelySwiftSDK', '~> 4.1.0'```
42+
```pod 'OptimizelySwiftSDK', '~> 5.0.0'```
4343
</pre>
4444

4545
2. Run the following command: <pre>``` pod install ```</pre>

0 commit comments

Comments
 (0)