Skip to content

Commit

Permalink
[FSSDK-10944] chore: prepare for release 5.0.0 (#566)
Browse files Browse the repository at this point in the history
* prepare release 5.0.0
  • Loading branch information
muzahidul-opti authored Nov 26, 2024
1 parent a1eb3ff commit a117ad5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/source_clear_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
source_clear:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Source clear scan
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
description: release

env:
VERSION: 4.1.0
VERSION: 5.0.0

jobs:

Expand All @@ -32,7 +32,7 @@ jobs:
TRAVIS_COM_TOKEN: ${{ secrets.TRAVIS_COM_TOKEN }}

lint:
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
Expand All @@ -50,7 +50,7 @@ jobs:
uses: optimizely/swift-sdk/.github/workflows/unit_tests.yml@master

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

release:
if: "${{github.event.inputs.RELEASE == 'true' && github.event_name == 'workflow_dispatch' }}"
runs-on: macos-12
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- uses: maxim-lobanov/setup-xcode@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ env:

jobs:
unittests:
runs-on: macos-12
runs-on: macos-13
strategy:
fail-fast: false
matrix:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Optimizely Swift SDK Changelog

## 5.0.0
November 25th, 2024

### Breaking Changes
* VUID configuration is now independent of ODP ([#456](https://github.com/optimizely/swift-sdk/pull/556))
* When VUID is disabled:
* `vuid` is not generated or saved.
* `client-initialized` event will not auto fired on SDK init.
* `vuid` is not included in the odp events as a default attribute.
* `createUserContext()` will be rejected if `userId` is not provided.

## 4.1.0
November 8, 2024

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ If you have a name conflict with other swift packages when you add the Optimizel
#### CocoaPods
1. Add the following lines to the _Podfile_:<pre>
```use_frameworks!```
```pod 'OptimizelySwiftSDK', '~> 4.1.0'```
```pod 'OptimizelySwiftSDK', '~> 5.0.0'```
</pre>

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

0 comments on commit a117ad5

Please sign in to comment.