Skip to content

Commit

Permalink
Merge pull request #126 from jjyr/upgrade-ckb-std
Browse files Browse the repository at this point in the history
release v0.10.1
  • Loading branch information
jjyr authored Jun 19, 2023
2 parents 9344591 + 57d87ef commit 04d03e8
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 17 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

The format is based on [Keep a Changelog](https://keepachangelog.com).

## [v0.10.1] - 2023-06-19

Bug fixes:

* fix: fix address parsing #125
* feat: remap path prefixs on release #122

Misc:

* Upgrade ckb-std and ckb-testtool dependencies


CKB Testtool:

* feat(ckb-testtool): Support Type ID #123


Full Changelog: https://github.com/nervosnetwork/capsule/compare/v0.10.0...v0.10.1

## [v0.10.0] - 2023-05-08

Capsule now uses `cross` to manage Rust contracts building. You can learn more details about this change in issue [#106](https://github.com/nervosnetwork/capsule/pull/106), and the wiki page [Upgrade an existing project to capsule 0.10](https://github.com/nervosnetwork/capsule/wiki/Upgrade-an-existing-project-to-capsule-0.10) provides instructions for upgrading an existing project to capsule `v0.10.0`.
Expand Down
12 changes: 6 additions & 6 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ckb-capsule"
version = "0.10.0"
version = "0.10.1"
authors = ["Nervos Network"]
edition = "2021"
license = "MIT"
Expand All @@ -16,7 +16,7 @@ anyhow = "1.0"
tera = "1.2"
lazy_static = "1.4"
serde = { version = "1.0", features = [ "derive" ] }
ckb-testtool = "0.9.0"
ckb-testtool = "0.9.1"
secp256k1 = "0.24"
serde_json = "1.0"
rpassword = "4.0"
Expand Down
15 changes: 11 additions & 4 deletions crates/tests/test-contract/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 crates/tests/test-contract/contracts/test-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "test-contract"
version = "0.1.0"
edition = "2018"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ckb-std = "0.12.1"
ckb-std = "0.14.0"
4 changes: 2 additions & 2 deletions crates/tests/test-contract/tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "tests"
version = "0.1.0"
edition = "2018"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ckb-testtool = "0.7.1"
ckb-testtool = { path = "../testtool" }
2 changes: 1 addition & 1 deletion templates/rust/contract/Cargo-manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ckb-std = "0.13"
ckb-std = "0.14.0"

0 comments on commit 04d03e8

Please sign in to comment.