Skip to content

Commit

Permalink
Update version to 2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cdottori-stark committed Nov 11, 2021
1 parent 6bb9eef commit 4b3a150
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 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.5.2] - 2021-11-10
### Changed
- java sdk version to 2.8.2

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,29 +32,29 @@ Given a version number MAJOR.MINOR.PATCH, increment:

1.1 Manually download the desired SDK version JARs found in our
[GitHub page](https://github.com/starkbank/sdk-clojure/releases/latest)
and add it to your `project.clj` as `:resource-paths ["resources/starkbank-2.5.1.jar"]`.
and add it to your `project.clj` as `:resource-paths ["resources/starkbank-2.5.2.jar"]`.

1.2 Using Leiningen/Boot:
```sh
[starkbank/sdk "2.5.1"]
[starkbank/sdk "2.5.2"]
```

1.3 Using Clojure CLI/deps.edn:
```sh
starkbank/sdk {:mvn/version "2.5.1"}
starkbank/sdk {:mvn/version "2.5.2"}
```

1.4 Using Gradle:
```sh
compile 'starkbank:sdk:2.5.1'
compile 'starkbank:sdk:2.5.2'
```

1.5 Using Maven:
```xml
<dependency>
<groupId>starkbank</groupId>
<artifactId>sdk</artifactId>
<version>2.5.1</version>
<version>2.5.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject starkbank/sdk "2.5.1"
(defproject starkbank/sdk "2.5.2"
:description "SDK to make Clojure integrations with the Stark Bank API easier."
:url "https://github.com/starkbank/sdk-clojure"
:license {:name "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/starkbank/settings.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@

(defn- set-user-agent-override
([]
(set! (. com.starkbank.Settings -userAgentOverride) (str "Clojure-" (clojure-version) "-SDK-2.5.1"))))
(set! (. com.starkbank.Settings -userAgentOverride) (str "Clojure-" (clojure-version) "-SDK-2.5.2"))))

(set-user-agent-override)

0 comments on commit 4b3a150

Please sign in to comment.