Skip to content

Commit

Permalink
API-7660: Bumped version in Constants (#105)
Browse files Browse the repository at this point in the history
* API-7660: Bumped version in Constants

* API-7660: Bumped version in Constants
  • Loading branch information
sbogolii-sift authored May 16, 2024
1 parent b13e475 commit 47741f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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.13.1";
public static final String LIB_VERSION = "3.14.0";
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.13.1", recordedRequest.getHeader("User-Agent"));
Assert.assertEquals("SiftScience/v205 sift-java/3.14.0", recordedRequest.getHeader("User-Agent"));
}

}

0 comments on commit 47741f5

Please sign in to comment.