Skip to content

Commit 499cc16

Browse files
authored
Release v3.17.1 (#115)
1 parent c75fcaa commit 499cc16

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGES.MD

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
3.17.1 (2024-12-31)
2+
=================
3+
- Included HTTP Status codes into `SiftException` message when possible
4+
- Validate that `apiKey` and `okHttpClient` are not `null` when creating `SiftClient`
5+
- Validate that `accoundId` is not `null` when creating requests which require `accoundId`
6+
17
3.17.0 (2024-11-15)
28
=================
39
- Added support for `$wager` event type in Events API

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ Java 1.7 or later.
1313
<dependency>
1414
<groupId>com.siftscience</groupId>
1515
<artifactId>sift-java</artifactId>
16-
<version>3.17.0</version>
16+
<version>3.17.1</version>
1717
</dependency>
1818
```
1919
### Gradle
2020
```
2121
dependencies {
22-
compile 'com.siftscience:sift-java:3.17.0'
22+
compile 'com.siftscience:sift-java:3.17.1'
2323
}
2424
```
2525
### Other

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'signing'
55
apply plugin: 'java-library-distribution'
66

77
group = 'com.siftscience'
8-
version = '3.17.0'
8+
version = '3.17.1'
99

1010
repositories {
1111
mavenCentral()

src/main/java/com/siftscience/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
public class Constants {
44

55
public static final String API_VERSION = "v205";
6-
public static final String LIB_VERSION = "3.17.0";
6+
public static final String LIB_VERSION = "3.17.1";
77
public static final String USER_AGENT_HEADER = String.format("SiftScience/%s sift-java/%s", API_VERSION, LIB_VERSION);
88
}

src/test/java/com/siftscience/SiftRequestTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public void testUserAgentHeader() throws Exception {
2929

3030
// then
3131
RecordedRequest recordedRequest = server.takeRequest();
32-
assertEquals("SiftScience/v205 sift-java/3.17.0",
32+
assertEquals("SiftScience/v205 sift-java/3.17.1",
3333
recordedRequest.getHeader("User-Agent"));
3434
}
3535

0 commit comments

Comments
 (0)