Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge release 8.0.0 #346

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-base
Submodule concordium-base updated 42 files
+2 −2 .github/workflows/build-test-contracts-common.yaml
+2 −2 .github/workflows/build-test-smart-contracts.yaml
+2 −2 .github/workflows/build-test-sources.yaml
+1 −0 concordium-base.cabal
+1 −1 concordium-grpc-api
+33 −0 haskell-bins/genesis/Genesis.hs
+3 −0 haskell-src/Concordium/Constants.hs
+1 −0 haskell-src/Concordium/Cost.hs
+32 −0 haskell-src/Concordium/GRPC2.hs
+19 −0 haskell-src/Concordium/Genesis/Data.hs
+143 −0 haskell-src/Concordium/Genesis/Data/P8.hs
+73 −0 haskell-src/Concordium/Genesis/Parameters.hs
+64 −5 haskell-src/Concordium/Types/Accounts.hs
+4 −0 haskell-src/Concordium/Types/Conditionally.hs
+36 −2 haskell-src/Concordium/Types/Execution.hs
+7 −0 haskell-src/Concordium/Types/Migration.hs
+81 −0 haskell-src/Concordium/Types/Parameters.hs
+69 −2 haskell-src/Concordium/Types/ProtocolVersion.hs
+6 −0 haskell-src/Concordium/Types/Queries.hs
+1 −0 haskell-src/Concordium/Types/SeedState.hs
+54 −0 haskell-src/Concordium/Types/UpdateQueues.hs
+1 −0 haskell-src/Concordium/Wasm.hs
+53 −5 haskell-tests/Generators.hs
+9 −0 haskell-tests/Genesis/ParametersSpec.hs
+12 −0 haskell-tests/Types/ParametersSpec.hs
+36 −10 haskell-tests/Types/PayloadSerializationSpec.hs
+4 −0 haskell-tests/Types/TransactionSummarySpec.hs
+2 −0 haskell-tests/Types/UpdatesSpec.hs
+2 −2 identity-provider-service/Cargo.lock
+2 −2 idiss/Cargo.lock
+4 −0 mobile_wallet/CHANGELOG.md
+3 −3 mobile_wallet/Cargo.lock
+1 −1 mobile_wallet/Cargo.toml
+16 −6 mobile_wallet/src/lib.rs
+2 −2 rust-bins/Cargo.lock
+17 −1 rust-src/concordium_base/src/transactions.rs
+1 −1 smart-contracts/contracts-common/concordium-contracts-common/src/schema.rs
+7 −0 smart-contracts/wasm-chain-integration/CHANGELOG.md
+2 −2 smart-contracts/wasm-chain-integration/Cargo.lock
+3 −3 smart-contracts/wasm-chain-integration/Cargo.toml
+2 −0 smart-contracts/wasm-transform/CHANGELOG.md
+1 −1 smart-contracts/wasm-transform/Cargo.toml
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
Loading