Skip to content
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.7"}
{".":"0.1.8"}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## [0.1.8](https://github.com/spotify/confidence-sdk-java/compare/v0.1.7...v0.1.8) (2025-04-28)


### 🐛 Bug Fixes

* change how we log resolve tester hints ([#177](https://github.com/spotify/confidence-sdk-java/issues/177)) ([00a8a90](https://github.com/spotify/confidence-sdk-java/commit/00a8a9008802dc2fd435faa04b2f5fe199fefddb))


### 🧹 Chore

* **main:** release 0.1.8-SNAPSHOT ([#181](https://github.com/spotify/confidence-sdk-java/issues/181)) ([b1a6353](https://github.com/spotify/confidence-sdk-java/commit/b1a635372d3938865c571258d69693b8bce93eec))

## [0.1.7](https://github.com/spotify/confidence-sdk-java/compare/v0.1.6...v0.1.7) (2025-04-17)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Java library for [Confidence](https://confidence.spotify.com/). This library is
<dependency>
<groupId>com.spotify.confidence</groupId>
<artifactId>sdk-java</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>0.1.8</version>
</dependency>
```
<!---x-release-please-end-->
Expand Down
4 changes: 2 additions & 2 deletions openfeature-provider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.spotify.confidence</groupId>
<artifactId>confidence-sdk-java</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>0.1.8</version>
</parent>

<artifactId>openfeature-provider</artifactId>
Expand All @@ -14,7 +14,7 @@
<dependency>
<groupId>com.spotify.confidence</groupId>
<artifactId>sdk-java</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>0.1.8</version>
</dependency>
<!---x-release-please-end-->
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<groupId>com.spotify.confidence</groupId>
<artifactId>confidence-sdk-java</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>0.1.8</version>

<url>https://github.com/spotify/confidence-sdk-java</url>
<description>Confidence SDK for Java</description>
Expand Down
2 changes: 1 addition & 1 deletion sdk-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.spotify.confidence</groupId>
<artifactId>confidence-sdk-java</artifactId>
<version>0.1.8-SNAPSHOT</version>
<version>0.1.8</version>
</parent>

<artifactId>sdk-java</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,6 @@ public static FlagPath getPath(String str) throws IllegalValuePath {
}

static String getSdkVersion() {
return "0.1.8-SNAPSHOT"; // x-release-please-version
return "0.1.8"; // x-release-please-version
}
}