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 1.1.0 #173

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

## [1.1.0](https://github.com/spotify/confidence-sdk-swift/compare/1.0.1...1.1.0) (2024-11-19)


### πŸ› Bug Fixes

* Properly encoded Resolve Debug URL ([#177](https://github.com/spotify/confidence-sdk-swift/issues/177)) ([00bf389](https://github.com/spotify/confidence-sdk-swift/commit/00bf389734840efbb41f641f642621e57278724e))
* TypeMismatch doesn't trigger apply ([#172](https://github.com/spotify/confidence-sdk-swift/issues/172)) ([df38f0b](https://github.com/spotify/confidence-sdk-swift/commit/df38f0b1043663d11e51250393d5757e61e2dd22))


### ✨ New Features

* Client Key in Resolve Debug logs ([#176](https://github.com/spotify/confidence-sdk-swift/issues/176)) ([712ff6e](https://github.com/spotify/confidence-sdk-swift/commit/712ff6e927ed7d760af2dfe821e66a5a954027da))
* Resolve Debug at DEBUG level logging ([#174](https://github.com/spotify/confidence-sdk-swift/issues/174)) ([558c811](https://github.com/spotify/confidence-sdk-swift/commit/558c8112210b16572f76f2636c1fdaafe1a4bdb6))

## [1.0.1](https://github.com/spotify/confidence-sdk-swift/compare/1.0.0...1.0.1) (2024-11-06)


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: "1.0.1")
.package(url: "[email protected]:spotify/confidence-sdk-swift.git", from: "1.1.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 @@ -401,7 +401,7 @@ extension Confidence {
timeoutIntervalForRequest: timeout)
let metadata = ConfidenceMetadata(
name: sdkId,
version: "1.0.1") // x-release-please-version
version: "1.1.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: "1.0.1")
.package(url: "[email protected]:spotify/confidence-sdk-swift.git", from: "1.1.0")
```
<!---x-release-please-end-->

Expand Down
Loading