Skip to content

Commit

Permalink
Update version to 8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Radiokot committed Sep 26, 2024
1 parent a6a16e0 commit b61f4e5
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 8.0.0
- Support for Protocol 7
- Added `ProtocolVersion.V7` corresponding to Protocol version 7
- Added `cooldowns` list to `AccountInfo`
Expand Down
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,15 +193,18 @@ A signer is then added to a `TransactionSigner` as follows:
Make sure to have Maven Local repository in your dependency resolution configuration

## Releasing
1. Create a `v.X.Y.Z` tag for a commit to release
2. Manually trigger the Release workflow for the tag
3. Ask for approval for the last part of the Release workflow
4. Sign in to https://s01.oss.sonatype.org/
5. In the Build Promotion menu in the left select the Staging Repositories item
6. Select the Concordium repository
7. "Close" the selected repository to prepare it for release
8. Once the closing is complete, "Release" it
9. Wait for the version to appear under https://repo1.maven.org/maven2/com/concordium/sdk/
10. Manually add Changelog entries of this version to the GitHub release
1. Change all the SDK artifacts version to `X.Y.Z`
where it previously was `X.Y.Z-SNAPSHOT`
2. Update the Changelog
3. Create a `v.X.Y.Z` tag for a commit to release
4. Manually trigger the Release workflow for the tag
5. Ask for approval for the last part of the Release workflow
6. Sign in to https://s01.oss.sonatype.org/
7. In the Build Promotion menu in the left select the Staging Repositories item
8. Select the Concordium repository
9. "Close" the selected repository to prepare it for release
10. Once the closing is complete, "Release" it
11. Wait for the version to appear under https://repo1.maven.org/maven2/com/concordium/sdk/
12. Manually add Changelog entries of this version to the GitHub release

[Maven – Releasing the deployment](https://central.sonatype.org/publish/release/)
2 changes: 1 addition & 1 deletion concordium-android-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.concordium.sdk</groupId>
<artifactId>concordium-sdk-base</artifactId>
<version>8.0.0-SNAPSHOT</version>
<version>8.0.0</version>
</parent>

<artifactId>concordium-android-sdk</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion concordium-sdk-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<dependency>
<groupId>com.concordium.sdk</groupId>
<artifactId>concordium-sdk</artifactId>
<version>8.0.0-SNAPSHOT</version>
<version>8.0.0</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion concordium-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.concordium.sdk</groupId>
<artifactId>concordium-sdk-base</artifactId>
<version>8.0.0-SNAPSHOT</version>
<version>8.0.0</version>
</parent>

<groupId>com.concordium.sdk</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.concordium.sdk</groupId>
<artifactId>concordium-sdk-base</artifactId>
<version>8.0.0-SNAPSHOT</version>
<version>8.0.0</version>
<packaging>pom</packaging>

<url>https://github.com/Concordium/concordium-java-sdk</url>
Expand Down

0 comments on commit b61f4e5

Please sign in to comment.