Skip to content

Commit 655b84e

Browse files
committed
chore(release): prepare release v2.0.0
1 parent 8028610 commit 655b84e

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
11
# Changelog
22

33

4+
## [2.0.0](https://github.com/nyg/kraken-api-java/compare/v1.0.0..2.0.0) - 2024-03-29
5+
6+
### ⛰️ Features
7+
8+
- [`7bc46b8`](https://github.com/nyg/kraken-api-java/commit/7bc46b8655338d0b72608802fd5ab0c9c9f2a699) **[breaking]** Ability to specify custom nonce generator ([#16](https://github.com/nyg/kraken-api-java/issues/16))
9+
- [`34915c4`](https://github.com/nyg/kraken-api-java/commit/34915c460ba4e83c8c71f1e79cbc1ae62dea7153) **[breaking]** Implement Ticker, Ledgers and QueryLedgers endpoints ([#12](https://github.com/nyg/kraken-api-java/issues/12))
10+
- [`2d7e766`](https://github.com/nyg/kraken-api-java/commit/2d7e766105684ad9683deba990b33aff95881659) Add SLF4J library ([#11](https://github.com/nyg/kraken-api-java/issues/11))
11+
- [`47b5d94`](https://github.com/nyg/kraken-api-java/commit/47b5d94987738739e5b07279d62532708ab3e945) **[breaking]** Return JsonNode instead of String for API calls ([#3](https://github.com/nyg/kraken-api-java/issues/3))
12+
13+
### 🚜 Refactor
14+
15+
- [`b047f47`](https://github.com/nyg/kraken-api-java/commit/b047f47fc158fcd985630fdd9dac6f10ba5c4dcf) **[breaking]** Adopt a more object-oriented approach ([#8](https://github.com/nyg/kraken-api-java/issues/8))
16+
17+
### ⚙️ Miscellaneous
18+
19+
- [`8028610`](https://github.com/nyg/kraken-api-java/commit/8028610b1b850261f8a32170f909604353e139b2) *(publish)* Update central-publishing plugin config
20+
- [`6a81fd4`](https://github.com/nyg/kraken-api-java/commit/6a81fd4878f4ee679cb45f8bcf4c6eab87a539d4) *(deps)* Update all non-major dependencies ([#6](https://github.com/nyg/kraken-api-java/issues/6))
21+
- [`ab3c048`](https://github.com/nyg/kraken-api-java/commit/ab3c048e993af7e9ec413f2512ba1f1661e418f4) *(examples)* Usage of nested POST parameters ([#15](https://github.com/nyg/kraken-api-java/issues/15))
22+
- [`ed6487a`](https://github.com/nyg/kraken-api-java/commit/ed6487a6bbf236b1d50cd698def66e8da5ca6c9e) *(java)* **[breaking]** Update to Java 21 ([#7](https://github.com/nyg/kraken-api-java/issues/7))
23+
- [`0d9b0da`](https://github.com/nyg/kraken-api-java/commit/0d9b0dae0d676fe58521477f7cf817606ae742e0) *(deps)* Update dependency org.codehaus.mojo:exec-maven-plugin to v3.2.0 ([#2](https://github.com/nyg/kraken-api-java/issues/2))
24+
- [`abd3026`](https://github.com/nyg/kraken-api-java/commit/abd302605e77e2328eb16f9299f5d3cd762aa064) *(deps)* Update orhun/git-cliff-action action to v3 ([#5](https://github.com/nyg/kraken-api-java/issues/5))
25+
- [`698c584`](https://github.com/nyg/kraken-api-java/commit/698c58452514499a439d3c5c240aeffda1fe06e6) *(deps)* Add Renovate configuration file
26+
- [`5cc538c`](https://github.com/nyg/kraken-api-java/commit/5cc538c9143b2577f8a0967fc434fc9835bda863) *(readme)* Add link to Sonatype on maven-central badge
27+
428
## 1.0.0 - 2024-01-30
529

630
### Others
@@ -24,4 +48,4 @@
2448
- [`9e616b8`](https://github.com/nyg/kraken-api-java/commit/9e616b87bbd99f733934b5a273f65b8c78eca8ca) Commit project
2549
- [`4aac798`](https://github.com/nyg/kraken-api-java/commit/4aac7988b04a82227d113fd3a8a7e60645e34c96) Initial commit
2650

27-
<!-- generated by git-cliff -->
51+
<!-- generated by git-cliff -->

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>dev.andstuff.kraken</groupId>
88
<artifactId>kraken-api-parent</artifactId>
9-
<version>1.0.1-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
</parent>
1111

1212
<artifactId>kraken-api-examples</artifactId>

library/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>dev.andstuff.kraken</groupId>
88
<artifactId>kraken-api-parent</artifactId>
9-
<version>1.0.1-SNAPSHOT</version>
9+
<version>2.0.0</version>
1010
</parent>
1111

1212
<artifactId>kraken-api</artifactId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>dev.andstuff.kraken</groupId>
77
<artifactId>kraken-api-parent</artifactId>
8-
<version>1.0.1-SNAPSHOT</version>
8+
<version>2.0.0</version>
99
<packaging>pom</packaging>
1010

1111
<name>Java Kraken API Client</name>
@@ -37,7 +37,7 @@
3737
<url>https://github.com/nyg/kraken-api-java</url>
3838
<connection>scm:git:https://github.com/nyg/kraken-api-java.git</connection>
3939
<developerConnection>scm:git:ssh://git@github.com/nyg/kraken-api-java.git</developerConnection>
40-
<tag>HEAD</tag>
40+
<tag>v2.0.0</tag>
4141
</scm>
4242

4343
<issueManagement>

0 commit comments

Comments
 (0)