Skip to content

Commit

Permalink
Bump versions for releases.
Browse files Browse the repository at this point in the history
  • Loading branch information
abizjak committed Mar 25, 2024
1 parent 076eb67 commit 103afdb
Show file tree
Hide file tree
Showing 16 changed files with 92 additions and 27 deletions.
2 changes: 1 addition & 1 deletion identity-provider-service/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion idiss/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion idiss/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ optional = true

[dependencies.concordium_base]
path = "../rust-src/concordium_base"
version = "4"
version = "*"
features = ["ffi"]

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion mobile_wallet/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions mobile_wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ version = "1.0.0"

[dependencies.concordium_base]
path = "../rust-src/concordium_base"
version = "4"
version = "*"

[build-dependencies.concordium_base]
path = "../rust-src/concordium_base"
version = "4"
version = "*"

# Use the same optimization level for building build.rs as for the library
# itself in release mode. This is necessary because some of the dependencies
Expand Down
2 changes: 1 addition & 1 deletion rust-bins/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rust-src/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions rust-src/concordium_base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Unreleased changes

## 5.0.0 (2024-03-25)

- Set minimum supported Rust version to 1.73.
- Make fields of CIS4 events public.
- Remove the `From<SlotDuration>` and `From<DurationSeconds>` implementations
Expand Down
4 changes: 2 additions & 2 deletions rust-src/concordium_base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "concordium_base"
version = "4.1.0"
version = "5.0.0"
authors = ["Concordium AG <developers@concordium.com>"]
edition = "2021"
rust-version = "1.73"
Expand Down Expand Up @@ -62,7 +62,7 @@ crate-type = ["rlib", "staticlib", "cdylib"]

# Local dependencies
[dependencies.concordium-contracts-common]
version = "9.0"
version = "9.1"
path = "../../smart-contracts/contracts-common/concordium-contracts-common"
features = ["derive-serde"]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased changes

## concordium-contracts-common-derive 4.1.0 (2024-03-25)

- Attribute macro `#[concordium_quickcheck]` generates code referencing `concordium_std` rather than `::concordium_std` allowing for user-provided `concordium_std`.
- Set minimum supported Rust version to 1.73.
- Support returning types that reference host or state from `init` or `receive`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@

## Unreleased changes

## concordium-contracts-common 9.1.0 (2024-03-25)

- Add `get_alias_unchecked` for `AccountAddress` that neglects the bounds check
assuming the caller has ensured it.
- Implement `serde::Serialize` and `serde::Deserialize` for `AccountSignature`, `CredentialSignature`, `Signature`, `SignatureEcdsaSecp256k1` and `SignatureEd25519` when feature `derive-serde` is enabled.
- Set minimum supported Rust version to 1.73.
- Change `HashBytes::new` is now a `const` function.
- Change `HashBytes::new` to a `const` function.

## concordium-contracts-common 9.0.0 (2024-01-22)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ version = "1.0"

[dependencies.concordium-contracts-common-derive]
path = "../concordium-contracts-common-derive"
version = "4"
version = "4.1"

[dependencies.hex]
optional = true
Expand Down
2 changes: 2 additions & 0 deletions smart-contracts/wasm-chain-integration/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased changes

## concordium-smart-contract-engine 5.0.0 (2024-03-25)

- `TestHost` no longer implements the `ValidateImportExport` trait, instead use `NoDuplicateImport` struct.
- `TestHost::new` now takes an instance state, allowing for support of host functions related to the smart contract key-value state.
- The function `utils::run_module_tests` now provides an empty in-memory instance state for each test case, allowing module tests to use host functions related to the smart contract key-value state.
Expand Down
2 changes: 1 addition & 1 deletion smart-contracts/wasm-chain-integration/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion smart-contracts/wasm-chain-integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "concordium-smart-contract-engine"
version = "4.0.0"
version = "5.0.0"
authors = ["Concordium <developers@concordium.com>"]
edition = "2018"
license-file = "../../LICENSE"
Expand Down
83 changes: 70 additions & 13 deletions smart-contracts/wasm-test/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 103afdb

Please sign in to comment.