Skip to content

Commit 1b9837f

Browse files
committed
Bump concordium-std version for release.
1 parent 8c93390 commit 1b9837f

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ jobs:
189189
run: |
190190
mv $PROJECT_NAME ${{ runner.temp }}/
191191
sed -i "s/root/Concordium <[email protected]>/g" ${{ runner.temp }}/$PROJECT_NAME/Cargo.toml
192-
sed -i "s/{version = \"6.0\", default-features = false}/{path = \"..\/..\/concordium-std\", default-features = false}/g" ${{ runner.temp }}/$PROJECT_NAME/Cargo.toml
192+
sed -i "s/{version = \"6.1\", default-features = false}/{path = \"..\/..\/concordium-std\", default-features = false}/g" ${{ runner.temp }}/$PROJECT_NAME/Cargo.toml
193193
sed -i "s/{version = \"3.0\", default-features = false}/{path = \"..\/..\/concordium-cis2\", default-features = false}/g" ${{ runner.temp }}/$PROJECT_NAME/Cargo.toml
194194
diff ${{ runner.temp }}/$PROJECT_NAME/Cargo.toml examples/cis2-nft/Cargo.toml
195195
diff ${{ runner.temp }}/$PROJECT_NAME/src/lib.rs examples/cis2-nft/src/lib.rs

concordium-std/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

33
## Unreleased changes
4+
5+
## concordium-std 6.1.0 (2023-03-16)
6+
47
- Add `Display` implementation for `OwnedParameter` and `Parameter`, which uses
58
hex encoding.
69
- Replace `From<Vec<u8>>` instance for `OwnedParameter`/`Parameter` with a `TryFrom`,
@@ -24,8 +27,6 @@
2427
their own container types atop blockchain storage
2528
- Move the type `AccountBalance` to `concordium-contracts-common`.
2629

27-
28-
2930
## concordium-std 6.0.1 (2023-02-28)
3031

3132
- Fix testing of crypto primitives using secp256k1 signature scheme.

concordium-std/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "concordium-std"
3-
version = "6.0.1"
3+
version = "6.1.0"
44
authors = ["Concordium <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
@@ -26,7 +26,7 @@ version = "5.1"
2626

2727
[dependencies.concordium-contracts-common]
2828
path = "../concordium-contracts-common/concordium-contracts-common"
29-
version = "5.2"
29+
version = "5.3"
3030
default-features = false
3131

3232
[features]

templates/cis2-nft/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ std = ["concordium-std/std", "concordium-cis2/std"]
1212
wee_alloc = ["concordium-std/wee_alloc"]
1313

1414
[dependencies]
15-
concordium-std = {version = "6.0", default-features = false}
15+
concordium-std = {version = "6.1", default-features = false}
1616
concordium-cis2 = {version = "3.0", default-features = false}
1717

1818
[lib]

templates/default/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ std = ["concordium-std/std"]
1414
wee_alloc = ["concordium-std/wee_alloc"]
1515

1616
[dependencies]
17-
concordium-std = {version = "6.0", default-features = false}
17+
concordium-std = {version = "6.1", default-features = false}
1818

1919
[lib]
2020
crate-type=["cdylib", "rlib"]

0 commit comments

Comments
 (0)