Skip to content

Commit 8a55b26

Browse files
committed
Release version 1.
1 parent 9f0624f commit 8a55b26

File tree

9 files changed

+16
-10
lines changed

9 files changed

+16
-10
lines changed

concordium-cis1/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ readme = "./README.md"
1111

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

1717
[features]

concordium-std-derive/CHANGELOG.md

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

33
## Unreleased changes
4+
5+
## concordium-std-derive 1.0.0 (2021-10-05)
6+
47
- Validate contract and receive names
58
- Improve precision of error locations in init and receive_workers
69
- Improve precision of error locations for `size_length`

concordium-std-derive/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-derive"
3-
version = "0.5.0"
3+
version = "1.0.0"
44
authors = ["Concordium <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
@@ -17,7 +17,7 @@ proc-macro2 = "1.0"
1717

1818
[dependencies.concordium-contracts-common]
1919
path = "../concordium-contracts-common"
20-
version = "0.4.1"
20+
version = "1.0"
2121
default-features = false
2222

2323
[lib]

concordium-std/CHANGELOG.md

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

33
## Unreleased changes
4+
5+
## concordium-std 1.0.0 (2021-10-05)
6+
47
- Add error codes for the new cases in NewContractNameError and NewReceiveNameError:
58
- `NewContractNameError::ContainsDot` is mapped to `i32::MIN + 9`
69
- `NewContractNameError::InvalidCharacters` is mapped to `i32::MIN + 10`

concordium-std/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "concordium-std"
3-
version = "0.5.0"
3+
version = "1.0.0"
44
authors = ["Concordium <[email protected]>"]
55
edition = "2018"
66
license = "MPL-2.0"
@@ -16,11 +16,11 @@ wee_alloc="0.4.5"
1616

1717
[dependencies.concordium-std-derive]
1818
path = "../concordium-std-derive"
19-
version = "=0.5"
19+
version = "1.0"
2020

2121
[dependencies.concordium-contracts-common]
2222
path = "../concordium-contracts-common"
23-
version = "=0.4"
23+
version = "1.0"
2424
default-features = false
2525

2626
[features]

examples/piggy-bank/part1/Cargo.toml

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

1919
[dependencies.concordium-std]
20-
version = "0.5"
20+
version = "1.0"
2121
path = "../../../concordium-std"
2222
default-features = false
2323

examples/piggy-bank/part2/Cargo.toml

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

1919
[dependencies.concordium-std]
20-
version = "0.5"
20+
version = "1.0"
2121
path = "../../../concordium-std"
2222
default-features = false
2323

examples/two-step-transfer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ byteorder = "1.3"
2020
[dependencies.concordium-std]
2121
# git = "https://github.com/Concordium/concordium-std.git"
2222
# branch = "main"
23-
version = "0.5"
23+
version = "1.0"
2424
path = "../../concordium-std"
2525
default-features = false
2626

0 commit comments

Comments
 (0)