Skip to content

Commit

Permalink
Bump to v2.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed Mar 22, 2023
1 parent 14dccc6 commit 9a3c8d1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion 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.12.0] - 2023-03-22
### Added
- metadata attribute to Transfer resource
- pictureUrl attribute to DynamicBrcode resource
Expand All @@ -26,7 +28,7 @@ Given a version number MAJOR.MINOR.PATCH, increment:
- workspaceId attribute to Event resource
- transactionIds attribute to DarfPayment and TaxPayment resources
### Removed
- Deprecated BrcodePreview resource
- deprecated BrcodePreview resource

## [2.11.0] - 2023-01-16
### Added
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ and add it to your project.

```sh
dependencies {
implementation 'com.starkbank:sdk:2.11.0'
implementation 'com.starkbank:sdk:2.12.0'
}
```

Expand All @@ -92,7 +92,7 @@ dependencies {
<dependency>
<groupId>com.starkbank</groupId>
<artifactId>sdk</artifactId>
<version>2.11.0</version>
<version>2.12.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.11.0'
version '2.12.0'

sourceCompatibility = 1.8

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

groupId = 'com.starkbank'
artifactId = 'sdk'
version = '2.11.0'
version = '2.12.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.11.0" : userAgentOverride;
return (userAgentOverride == null) ? "Java-" + System.getProperty("java.version") + "-SDK-2.12.0" : userAgentOverride;
}
}

0 comments on commit 9a3c8d1

Please sign in to comment.