Skip to content

Commit

Permalink
chore(main): release 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 9, 2024
1 parent 8de4b78 commit 960a36a
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.1.4"}
{".":"0.1.5"}
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [0.1.5](https://github.com/spotify/confidence-openfeature-provider-swift/compare/0.1.4...0.1.5) (2024-04-09)


### ✨ New Features

* Add ConfidenceValue ([#84](https://github.com/spotify/confidence-openfeature-provider-swift/issues/84)) ([8de4b78](https://github.com/spotify/confidence-openfeature-provider-swift/commit/8de4b7805378866023e939aec39c71a78ba771fe))


### 📚 Documentation

* Add apply documentation note ([#80](https://github.com/spotify/confidence-openfeature-provider-swift/issues/80)) ([1bd9525](https://github.com/spotify/confidence-openfeature-provider-swift/commit/1bd9525e5e0a7d40834aba7bc962225978a36f91))


### 🔄 Refactoring

* Add Confidence Library scaffolding ([#83](https://github.com/spotify/confidence-openfeature-provider-swift/issues/83)) ([2e49e23](https://github.com/spotify/confidence-openfeature-provider-swift/commit/2e49e2370d29d63450cc094894743fae92914df5))

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


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: "git@github.com:spotify/confidence-openfeature-provider-swift.git", from: "0.1.4")
.package(url: "git@github.com:spotify/confidence-openfeature-provider-swift.git", from: "0.1.5")
```
<!---x-release-please-end-->

Expand Down
4 changes: 2 additions & 2 deletions Sources/ConfidenceProvider/ConfidenceFeatureProvider.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class ConfidenceFeatureProvider: FeatureProvider {

/// Initialize the Provider via a `Confidence` object.
public init(confidence: Confidence) {
let metadata = ConfidenceMetadata(version: "0.1.4") // x-release-please-version
let metadata = ConfidenceMetadata(version: "0.1.5") // x-release-please-version
let options = ConfidenceClientOptions(
credentials: ConfidenceClientCredentials.clientSecret(secret: confidence.clientSecret),
timeout: confidence.timeout,
Expand Down Expand Up @@ -430,7 +430,7 @@ extension ConfidenceFeatureProvider {
extension ConfidenceFeatureProvider {
public struct Builder {
var options: ConfidenceClientOptions
let metadata = ConfidenceMetadata(version: "0.1.4") // x-release-please-version
let metadata = ConfidenceMetadata(version: "0.1.5") // x-release-please-version
var session: URLSession?
var localOverrides: [String: LocalOverride] = [:]
var storage: Storage = DefaultStorage.resolverFlagsCache()
Expand Down

0 comments on commit 960a36a

Please sign in to comment.