Skip to content

Commit d1c2b8e

Browse files
committed
Bump version, prepare for release.
1 parent 7369625 commit d1c2b8e

File tree

11 files changed

+25
-18
lines changed

11 files changed

+25
-18
lines changed

.github/workflows/linter.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ jobs:
188188
run: |
189189
mv $PROJECT_NAME ${{ runner.temp }}/
190190
sed -i "s/root/Concordium <[email protected]>/g" ${{ runner.temp }}/$PROJECT_NAME/Cargo.toml
191-
sed -i "s/\"5.1\"/{path = \"..\/..\/concordium-std\", default-features = false}/g" ${{ runner.temp }}/$PROJECT_NAME/Cargo.toml
192-
sed -i "s/\"2.0\"/{path = \"..\/..\/concordium-cis2\", default-features = false}/g" ${{ runner.temp }}/$PROJECT_NAME/Cargo.toml
191+
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 = \"3.0\", default-features = false}/{path = \"..\/..\/concordium-cis2\", default-features = false}/g" ${{ runner.temp }}/$PROJECT_NAME/Cargo.toml
193193
diff ${{ runner.temp }}/$PROJECT_NAME/Cargo.toml examples/cis2-nft/Cargo.toml
194194
diff ${{ runner.temp }}/$PROJECT_NAME/src/lib.rs examples/cis2-nft/src/lib.rs
195195
@@ -379,7 +379,7 @@ jobs:
379379
uses: actions-rs/cargo@v1
380380
with:
381381
command: build
382-
args: --manifest-path ${{ matrix.crates }} --target=${{ matrix.target }} --no-default-features --features wee_alloc
382+
args: --manifest-path ${{ matrix.crates }} --target=${{ matrix.target }} --no-default-features
383383

384384
check-no-std-examples:
385385
name: Build on nightly,

concordium-cis2/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22

33
## Unreleased changes
44

5-
- Add `wee_alloc` feature to enable the `wee_alloc` feature of
6-
`concordium-std`.
5+
## concordium-cis2 3.0.0 (2023-02-08)
6+
7+
- Update `concordium-std` to version 6.
78

89
## concordium-cis2 2.0.0 (2022-11-21)
910

concordium-cis2/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "concordium-cis2"
3-
version = "2.1.0"
3+
version = "3.0.0"
44
authors = ["Concordium <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
@@ -11,7 +11,7 @@ readme = "./README.md"
1111

1212
[dependencies.concordium-std]
1313
path = "../concordium-std"
14-
version = ">=5.2"
14+
version = "6"
1515
default-features = false
1616

1717
[dependencies.primitive-types]
@@ -21,7 +21,6 @@ default-features = false
2121
[features]
2222
default = ["std"]
2323
std = ["concordium-std/std"]
24-
wee_alloc = ["concordium-std/wee_alloc"]
2524
u256_amount = []
2625

2726
[lib]

concordium-std/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased changes
44

5+
## concordium-std 6.0.0 (2023-02-08)
6+
57
- [`wee_alloc`](https://docs.rs/wee_alloc/latest/wee_alloc/index.html) is no
68
longer set as the allocator in `concordium-std` but can be enabled via the
79
feature `wee_alloc`. The consequence is that unless `std` feature is

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 = "5.2.0"
3+
version = "6.0.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.1"
29+
version = "5.2"
3030
default-features = false
3131

3232
[features]

examples/piggy-bank/part1/Cargo.toml

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

2020
[dependencies.concordium-std]
21-
version = "5"
21+
version = "6"
2222
path = "../../../concordium-std"
2323
default-features = false
2424

examples/piggy-bank/part2/Cargo.toml

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

2020
[dependencies.concordium-std]
21-
version = "5"
21+
version = "6"
2222
path = "../../../concordium-std"
2323
default-features = false
2424

examples/two-step-transfer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ std = ["concordium-std/std"]
1616
wee_alloc = ["concordium-std/wee_alloc"]
1717

1818
[dependencies.concordium-std]
19-
version = "5"
19+
version = "6"
2020
path = "../../concordium-std"
2121
default-features = false
2222

2323
[dev-dependencies.concordium-std]
24-
version = "5"
24+
version = "6"
2525
path = "../../concordium-std"
2626
features = ["concordium-quickcheck"]
2727

templates/cis2-nft/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ std = ["concordium-std/std", "concordium-cis2/std"]
1212
wee_alloc = ["concordium-std/wee_alloc"]
1313

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

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

0 commit comments

Comments
 (0)