Skip to content

Commit

Permalink
API-7660: Bumped version to 3.14.1 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbogolii-sift authored May 17, 2024
1 parent 47741f5 commit 2896bd6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGES.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
3.14.0 (2024-05-15)
3.14.1 (2024-05-16)
=================
- Added support for warnings in Events API

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.14.0</version>
<version>3.14.1</version>
</dependency>
```
### Gradle
```
dependencies {
compile 'com.siftscience:sift-java:3.14.0'
compile 'com.siftscience:sift-java:3.14.1'
}
```
### Other
Expand Down
2 changes: 1 addition & 1 deletion 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.14.0'
version = '3.14.1'

repositories {
mavenCentral()
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.14.0";
public static final String LIB_VERSION = "3.14.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 @@ -37,7 +37,7 @@ public void testUserAgentHeader() throws Exception {

// Verify the request.
RecordedRequest recordedRequest = server.takeRequest();
Assert.assertEquals("SiftScience/v205 sift-java/3.14.0", recordedRequest.getHeader("User-Agent"));
Assert.assertEquals("SiftScience/v205 sift-java/3.14.1", recordedRequest.getHeader("User-Agent"));
}

}

0 comments on commit 2896bd6

Please sign in to comment.