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.1.4 #76

Merged
merged 1 commit into from
Feb 9, 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.1.3"}
{".":"0.1.4"}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.1.4](https://github.com/spotify/confidence-openfeature-provider-swift/compare/0.1.3...0.1.4) (2024-02-08)


### 🐛 Bug Fixes

* change STALE reason in case of context change ([#79](https://github.com/spotify/confidence-openfeature-provider-swift/issues/79)) ([9f5c91f](https://github.com/spotify/confidence-openfeature-provider-swift/commit/9f5c91feace22e227db63776a8808656fd926734))
* Remove extra slash in URL ([#74](https://github.com/spotify/confidence-openfeature-provider-swift/issues/74)) ([1f33e21](https://github.com/spotify/confidence-openfeature-provider-swift/commit/1f33e21954bf2fd1e540dd30418bdfdb432c2a8c))
* Remove STALE event ([#78](https://github.com/spotify/confidence-openfeature-provider-swift/issues/78)) ([485d09f](https://github.com/spotify/confidence-openfeature-provider-swift/commit/485d09f26a96fda0b2972f0c3d14f7b2e1ad12e3))


### 🧹 Chore

* Update CODEOWNERS ([#75](https://github.com/spotify/confidence-openfeature-provider-swift/issues/75)) ([500d84e](https://github.com/spotify/confidence-openfeature-provider-swift/commit/500d84ecc4c357f0239e850cf318f18c2299cca7))

## [0.1.3](https://github.com/spotify/confidence-openfeature-provider-swift/compare/0.1.2...0.1.3) (2024-01-30)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ the relevant OpenFeature SDK dependency manually.
<!---x-release-please-start-version-->
In the dependencies section of Package.swift add:
```swift
.package(url: "[email protected]:spotify/confidence-openfeature-provider-swift.git", from: "0.1.3")
.package(url: "[email protected]:spotify/confidence-openfeature-provider-swift.git", from: "0.1.4")
```
<!---x-release-please-end-->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ extension ConfidenceFeatureProvider {
extension ConfidenceFeatureProvider {
public struct Builder {
var options: ConfidenceClientOptions
let metadata = ConfidenceMetadata(version: "0.1.3") // x-release-please-version
let metadata = ConfidenceMetadata(version: "0.1.4") // x-release-please-version
var session: URLSession?
var localOverrides: [String: LocalOverride] = [:]
var storage: Storage = DefaultStorage.resolverFlagsCache()
Expand Down