Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 0.3.0 #154

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.2.4"}
{".":"0.3.0"}
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Changelog

## [0.3.0](https://github.com/spotify/confidence-sdk-swift/compare/0.2.4...0.3.0) (2024-07-16)


### ⚠ BREAKING CHANGES

* getEvaluation doesnt throw ([#158](https://github.com/spotify/confidence-sdk-swift/issues/158))
* decrease API surface ([#156](https://github.com/spotify/confidence-sdk-swift/issues/156))

### πŸ› Bug Fixes

* handle Int32 and Int64 in defaultValue evaluations ([#162](https://github.com/spotify/confidence-sdk-swift/issues/162)) ([6bb03d5](https://github.com/spotify/confidence-sdk-swift/commit/6bb03d5e06fa4a57ee5d5356d1b925ca207ef993))


### ✨ New Features

* add timeout to fetchAndActivate ([#160](https://github.com/spotify/confidence-sdk-swift/issues/160)) ([ea18479](https://github.com/spotify/confidence-sdk-swift/commit/ea18479aea15932e5c737b17274b89e4eb550018))


### πŸ“š Documentation

* Add docs to public APIs ([#163](https://github.com/spotify/confidence-sdk-swift/issues/163)) ([2c4ee11](https://github.com/spotify/confidence-sdk-swift/commit/2c4ee11809e88b25713a178910232bc15a03b74c))
* fix typo ([#161](https://github.com/spotify/confidence-sdk-swift/issues/161)) ([297658b](https://github.com/spotify/confidence-sdk-swift/commit/297658ba4d0175693d637e69643dd0f992f981a7))
* update readme ([#153](https://github.com/spotify/confidence-sdk-swift/issues/153)) ([9e49bb0](https://github.com/spotify/confidence-sdk-swift/commit/9e49bb01c112a887c6892101c379a3764d48799e))
* Update READMEs ([#164](https://github.com/spotify/confidence-sdk-swift/issues/164)) ([c8437ac](https://github.com/spotify/confidence-sdk-swift/commit/c8437ac41e4a91b5024732c18b94634a60092ffe))


### πŸ”„ Refactoring

* decrease API surface ([917743b](https://github.com/spotify/confidence-sdk-swift/commit/917743b98df4b1bbae7caa7941540cf07e7b9316))
* decrease API surface ([#156](https://github.com/spotify/confidence-sdk-swift/issues/156)) ([917743b](https://github.com/spotify/confidence-sdk-swift/commit/917743b98df4b1bbae7caa7941540cf07e7b9316))
* getEvaluation doesnt throw ([#158](https://github.com/spotify/confidence-sdk-swift/issues/158)) ([09f6b73](https://github.com/spotify/confidence-sdk-swift/commit/09f6b735a0c54c5b43bb7415b5fff87d48ba379e))

## [0.2.4](https://github.com/spotify/confidence-sdk-swift/compare/0.2.3...0.2.4) (2024-07-02)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Functionalities:
<!---x-release-please-start-version-->
In the dependencies section of Package.swift add:
```swift
.package(url: "[email protected]:spotify/confidence-sdk-swift.git", from: "0.2.4")
.package(url: "[email protected]:spotify/confidence-sdk-swift.git", from: "0.3.0")
```
<!---x-release-please-end-->

Expand Down
2 changes: 1 addition & 1 deletion Sources/Confidence/Confidence.swift
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ extension Confidence {
timeoutIntervalForRequest: timeout)
let metadata = ConfidenceMetadata(
name: sdkId,
version: "0.2.4") // x-release-please-version
version: "0.3.0") // x-release-please-version
let uploader = RemoteConfidenceClient(
options: options,
metadata: metadata,
Expand Down
2 changes: 1 addition & 1 deletion Sources/ConfidenceProvider/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ If you want to use OpenFeature, an OpenFeature Provider for the [OpenFeature SDK
<!---x-release-please-start-version-->
In the dependencies section of Package.swift add:
```swift
.package(url: "[email protected]:spotify/confidence-sdk-swift.git", from: "0.2.4")
.package(url: "[email protected]:spotify/confidence-sdk-swift.git", from: "0.3.0")
```
<!---x-release-please-end-->

Expand Down