Skip to content

Commit

Permalink
Bump to v2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed May 3, 2023
1 parent 491da98 commit 4b86714
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Given a version number MAJOR.MINOR.PATCH, increment:


## [Unreleased]

## [2.14.0] - 2023-05-03
### Added
- rules attribute to Invoice resource
- Invoice.Rule sub-resource
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ and add it to your project.

```sh
dependencies {
implementation 'com.starkbank:sdk:2.13.0'
implementation 'com.starkbank:sdk:2.14.0'
}
```

Expand All @@ -100,7 +100,7 @@ dependencies {
<dependency>
<groupId>com.starkbank</groupId>
<artifactId>sdk</artifactId>
<version>2.13.0</version>
<version>2.14.0</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group 'com.starkbank'
version '2.13.0'
version '2.14.0'

sourceCompatibility = 1.8

Expand Down Expand Up @@ -40,7 +40,7 @@ publishing {

groupId = 'com.starkbank'
artifactId = 'sdk'
version = '2.13.0'
version = '2.14.0'
from components.java

pom {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/starkbank/utils/Response.java
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,6 @@ private static Response executeMethod(User user, String path, String method, Str
}

private static String getUserAgent() {
return (userAgentOverride == null) ? "Java-" + System.getProperty("java.version") + "-SDK-2.13.0" : userAgentOverride;
return (userAgentOverride == null) ? "Java-" + System.getProperty("java.version") + "-SDK-2.14.0" : userAgentOverride;
}
}

0 comments on commit 4b86714

Please sign in to comment.