diff --git a/CHANGELOG.md b/CHANGELOG.md index 53af9805f7..e03eca0c6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Changelog ========= +[0.18.1](https://github.com/ordinals/ord/releases/tag/0.18.1) - 2023-04-11 +-------------------------------------------------------------------------- + +### Fixed +- Fix off-by-one in wallet when waiting for etching commitment to mature ([#3515](https://github.com/ordinals/ord/pull/3515) by [casey](https://github.com/casey)) + [0.18.0](https://github.com/ordinals/ord/releases/tag/0.18.0) - 2023-04-10 -------------------------------------------------------------------------- diff --git a/Cargo.lock b/Cargo.lock index 63424f98c4..5c1477c79f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -272,9 +272,9 @@ checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799" [[package]] name = "async-trait" -version = "0.1.79" +version = "0.1.80" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507401cad91ec6a857ed5513a2073c82a9b9048762b885bb98655b306964681" +checksum = "c6fa2087f2753a7da8cc1c0dbfcf89579dd57458e36769de5ac750b4671737ca" dependencies = [ "proc-macro2", "quote", @@ -2249,7 +2249,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "ord" -version = "0.18.0" +version = "0.18.1" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 6edc862100..3953237583 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ord" description = "◉ Ordinal wallet and block explorer" -version = "0.18.0" +version = "0.18.1" license = "CC0-1.0" edition = "2021" autotests = false