Skip to content

Commit

Permalink
Prepare for release of
Browse files Browse the repository at this point in the history
- concordium-base
- concordium-contracts-common
- concordium-smart-contract-engine
- concordium-wasm
  • Loading branch information
abizjak committed Jan 22, 2024
1 parent 8024cee commit 4b5c1ad
Show file tree
Hide file tree
Showing 18 changed files with 64 additions and 182 deletions.
183 changes: 28 additions & 155 deletions identity-provider-service/Cargo.lock

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion identity-provider-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ tokio = { version = "1", features = ["full"] }
warp = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
pairing = "0.15"
log = "0.4.11"
env_logger = "0.9"
structopt = "0.3"
Expand Down
4 changes: 2 additions & 2 deletions 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 = "3"
version = "4"
features = ["ffi"]

[build-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions 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 = "3"
version = "4"

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

# 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
4 changes: 2 additions & 2 deletions rust-bins/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 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

## 4.0.0 (2024-01-22)

- Add `MultiExp` trait that allows to have different `multiexp` algorithm implementations for different curves.
- Improve performance of the generic `multiexp` algorithm.
- Add an instance of `MultiExp` that is specific to `curve25519`.
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 = "3.2.0"
version = "4.0.0"
authors = ["Concordium AG <developers@concordium.com>"]
edition = "2021"
rust-version = "1.65"
Expand Down Expand Up @@ -62,7 +62,7 @@ crate-type = ["rlib", "staticlib", "cdylib"]

# Local dependencies
[dependencies.concordium-contracts-common]
version = "8.1"
version = "9.0"
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 9.0.0 (2024-01-22)

- Add `SchemaType` implementation for `&str`.
- Add missing functionality from `Timestamp` in `concordium-base` to `Timestamp` in this crate, i.e. make internal field `millis` public, implement `From<u64>` and add a `now` method.
- The `Debug` implementations of `Parameter` and `OwnedParameter` now output the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "concordium-contracts-common"
version = "8.1.1"
version = "9.0.0"
authors = ["Concordium <developers@concordium.com>"]
edition = "2021"
rust-version = "1.65"
Expand Down Expand Up @@ -90,8 +90,8 @@ crate-type = ["rlib"]

[dev-dependencies]
arbitrary = { version = "1.3", features = ["derive"] }
rand = "=0.7"
rand_pcg = "0.2.1"
rand = "0.8"
rand_pcg = "0.3"


[package.metadata.docs.rs]
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 4.0.0 (2024-01-22)

- Add a `branch_statistics` function to get insight into smart contract state
tree structure.
- Remove `utils::WasmVersion` to instead reexport a similar type from `concordium_contracts_common`.
Expand Down
6 changes: 3 additions & 3 deletions smart-contracts/wasm-chain-integration/Cargo.lock

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

6 changes: 3 additions & 3 deletions 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 = "3.1.0"
version = "4.0.0"
authors = ["Concordium <developers@concordium.com>"]
edition = "2018"
license-file = "../../LICENSE"
Expand Down Expand Up @@ -42,10 +42,10 @@ rand = { version = "=0.8", features = ["small_rng"] }

[dependencies.concordium-wasm]
path = "../wasm-transform"
version = "3"
version = "4"

[dependencies.concordium-contracts-common]
version = "8.0"
version = "9.0"
path = "../contracts-common/concordium-contracts-common"
features = ["derive-serde"]

Expand Down
4 changes: 2 additions & 2 deletions smart-contracts/wasm-test/Cargo.lock

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

4 changes: 4 additions & 0 deletions smart-contracts/wasm-transform/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased changes

## concordium-wasm 4.0.0 (2024-01-22)

- Update contracts-common dependency to version 9.

## concordium-wasm 3.0.0 (2023-08-21)

- `validate_module` is now parameterized by `ValidationConfig` which determines
Expand Down
4 changes: 2 additions & 2 deletions smart-contracts/wasm-transform/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "concordium-wasm"
version = "3.0.0"
version = "4.0.0"
authors = ["Concordium <developers@concordium.com>"]
edition = "2018"
license-file = "../../LICENSE"
Expand All @@ -21,7 +21,7 @@ derive_more = "0.99"


[dependencies.concordium-contracts-common]
version = "8"
version = "9"
path = "../contracts-common/concordium-contracts-common"
features = ["derive-serde"]

Expand Down

0 comments on commit 4b5c1ad

Please sign in to comment.