Skip to content

Commit

Permalink
chore(release): prepare release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nyg committed Jan 30, 2024
1 parent 1a46fd6 commit 28bcc78
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 5 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog


## 1.0.0 - 2024-01-30

### Others

- [`1a46fd6`](https://github.com/nyg/kraken-api-java/commit/1a46fd65cccc3a1c626b62402046257b12d057c9) Update release and changelog scripts
- [`f757236`](https://github.com/nyg/kraken-api-java/commit/f757236d39bbbbff734251cb82a8e126875f9ca1) Revert to Java 8
- [`34050d6`](https://github.com/nyg/kraken-api-java/commit/34050d6db4b231704215d7944a93ff2c9658a754) Update README instructions
- [`65114c3`](https://github.com/nyg/kraken-api-java/commit/65114c363638d722aff370289c486ca068c324a6) Change to version 1.0.0-SNAPSHOT
- [`951a4dc`](https://github.com/nyg/kraken-api-java/commit/951a4dcab276d841897dabfbd4312c04ab5363cf) Rename Java package
- [`3013703`](https://github.com/nyg/kraken-api-java/commit/30137035e5520015a43967c1f1985b9f0dd95161) Create GitHub release when tag is pushed
- [`d9de827`](https://github.com/nyg/kraken-api-java/commit/d9de827903d60af469433a05dad952af5d8f5212) Configure maven-release-plugin and git-cliff
- [`e9d02be`](https://github.com/nyg/kraken-api-java/commit/e9d02beb8aec494810c6935db4d3470e4079057b) Fix Lombok issue with constructor
- [`f6d8884`](https://github.com/nyg/kraken-api-java/commit/f6d8884607ce8039d9100fe26431ebcf430631ef) Refactor into separate Maven modules
- [`3d79434`](https://github.com/nyg/kraken-api-java/commit/3d79434e8c2c15ae516e434dcb89e44161f97c2a) Minor formatting changes
- [`1639dd8`](https://github.com/nyg/kraken-api-java/commit/1639dd8ad46dfa0a07ccd72dc7fce8be1b8c010f) Simplify POM file
- [`d8a160c`](https://github.com/nyg/kraken-api-java/commit/d8a160c7bd028c4601d8801b2cd4a6aaedd53c62) Add .gitignore
- [`8d827ae`](https://github.com/nyg/kraken-api-java/commit/8d827ae515bbdd4093528e2a438f08551c77defe) Added instructions to build and run
- [`6fbe590`](https://github.com/nyg/kraken-api-java/commit/6fbe5904160cadfcace79ffff45368f4ac3025e2) Removed unused dependencies
- [`d456292`](https://github.com/nyg/kraken-api-java/commit/d45629257372d79645027f05e1d2b527552727c8) Now using Maven
- [`f2573c0`](https://github.com/nyg/kraken-api-java/commit/f2573c0d2e3237b2a203ca524259d85c6239eadc) Update README.md
- [`9e616b8`](https://github.com/nyg/kraken-api-java/commit/9e616b87bbd99f733934b5a273f65b8c78eca8ca) Commit project
- [`4aac798`](https://github.com/nyg/kraken-api-java/commit/4aac7988b04a82227d113fd3a8a7e60645e34c96) Initial commit

<!-- generated by git-cliff -->
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>dev.andstuff.kraken</groupId>
<artifactId>kraken-api-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<artifactId>kraken-api-examples</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion library/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>dev.andstuff.kraken</groupId>
<artifactId>kraken-api-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<artifactId>kraken-api</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>dev.andstuff.kraken</groupId>
<artifactId>kraken-api-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<name>Java Kraken API Client</name>
Expand Down Expand Up @@ -37,7 +37,7 @@
<url>https://github.com/nyg/kraken-api-java</url>
<connection>scm:git:https://github.com/nyg/kraken-api-java.git</connection>
<developerConnection>scm:git:ssh://[email protected]/nyg/kraken-api-java.git</developerConnection>
<tag>HEAD</tag>
<tag>v1.0.0</tag>
</scm>

<issueManagement>
Expand Down Expand Up @@ -95,7 +95,7 @@
<!-- release:prepare -->
<autoVersionSubmodules>true</autoVersionSubmodules>
<preparationGoals>clean verify exec:exec</preparationGoals>
<scmCommentPrefix>chore(release):&#32;</scmCommentPrefix>
<scmCommentPrefix>chore(release): </scmCommentPrefix>
<signTag>true</signTag>
<tagNameFormat>v@{version}</tagNameFormat>
<!-- release:perform -->
Expand Down

0 comments on commit 28bcc78

Please sign in to comment.