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 CHANGES.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3.21.0 (2025-07-28)
3.21.1 (2025-07-29)
=================
- Bumped version for `gson` from `2.10` to `2.13.1`
- Bumped version for `okhttp` from `4.12.0` to `5.1.0`
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ Java 1.7 or later.
<dependency>
<groupId>com.siftscience</groupId>
<artifactId>sift-java</artifactId>
<version>3.21.0</version>
<version>3.21.1</version>
</dependency>
```
### Gradle
```
dependencies {
compile 'com.siftscience:sift-java:3.21.0'
compile 'com.siftscience:sift-java:3.21.1'
}
```
### Other
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'signing'
apply plugin: 'java-library-distribution'

group = 'com.siftscience'
version = '3.21.0'
version = '3.21.1'

repositories {
mavenCentral()
Expand Down Expand Up @@ -106,7 +106,7 @@ publishing {
pom.packaging = "jar"

pom.withXml {
configurations.compile.resolvedConfiguration.firstLevelModuleDependencies.each {
configurations.runtimeClasspath.resolvedConfiguration.firstLevelModuleDependencies.each {
dep ->
asNode().dependencies[0].dependency.find {
it.artifactId[0].text() == dep.moduleName &&
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/siftscience/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
public class Constants {

public static final String API_VERSION = "v205";
public static final String LIB_VERSION = "3.21.0";
public static final String LIB_VERSION = "3.21.1";
public static final String USER_AGENT_HEADER = String.format("SiftScience/%s sift-java/%s", API_VERSION, LIB_VERSION);
}
2 changes: 1 addition & 1 deletion src/test/java/com/siftscience/SiftRequestTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void testUserAgentHeader() throws Exception {

// then
RecordedRequest recordedRequest = server.takeRequest();
assertEquals("SiftScience/v205 sift-java/3.21.0",
assertEquals("SiftScience/v205 sift-java/3.21.1",
recordedRequest.getHeader("User-Agent"));
}

Expand Down