From 0b4d7af93e6005620c1efe6aa6df21361728c1cc Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Fri, 1 Dec 2023 15:41:57 -0800 Subject: [PATCH] Release 0.12.3 (#2796) --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.lock | 26 +++++++++++++------------- Cargo.toml | 2 +- 3 files changed, 30 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 382b56690b..6df9466797 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ Changelog ========= +[0.12.3](https://github.com/ordinals/ord/releases/tag/0.12.3) - 2023-12-01 +-------------------------------------------------------------------------- + +### Added +- Add `ord balances` to show rune balances (#2782) + +### Fixed +- Fix preview test (#2795) +- Fix reinscriptions charm (#2793) +- Fix fee calculation for batch inscribe on same sat (#2785) + +### Misc +- Add `audit-cache` binary to audit Cloudflare caching (#2787) +- Fix typos (#2791) +- Add total bytes and proportion to database info (#2783) + [0.12.2](https://github.com/ordinals/ord/releases/tag/0.12.2) - 2023-11-29 -------------------------------------------------------------------------- diff --git a/Cargo.lock b/Cargo.lock index 39195ca8eb..1f0a8f86fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -743,9 +743,9 @@ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" [[package]] name = "core-foundation" -version = "0.9.3" +version = "0.9.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" dependencies = [ "core-foundation-sys", "libc", @@ -753,9 +753,9 @@ dependencies = [ [[package]] name = "core-foundation-sys" -version = "0.8.4" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" +checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "cpufeatures" @@ -1636,7 +1636,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b" dependencies = [ "hermit-abi", - "rustix 0.38.25", + "rustix 0.38.26", "windows-sys 0.48.0", ] @@ -1767,9 +1767,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "linux-raw-sys" -version = "0.4.11" +version = "0.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" +checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "lock_api" @@ -2084,7 +2084,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "ord" -version = "0.12.2" +version = "0.12.3" dependencies = [ "anyhow", "async-trait", @@ -2638,15 +2638,15 @@ dependencies = [ [[package]] name = "rustix" -version = "0.38.25" +version = "0.38.26" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc99bc2d4f1fed22595588a013687477aedf3cdcfb26558c559edb67b4d9b22e" +checksum = "9470c4bf8246c8daf25f9598dca807fb6510347b1e1cfa55749113850c79d88a" dependencies = [ "bitflags 2.4.1", "errno", "libc", - "linux-raw-sys 0.4.11", - "windows-sys 0.48.0", + "linux-raw-sys 0.4.12", + "windows-sys 0.52.0", ] [[package]] @@ -3065,7 +3065,7 @@ dependencies = [ "cfg-if 1.0.0", "fastrand 2.0.1", "redox_syscall 0.4.1", - "rustix 0.38.25", + "rustix 0.38.26", "windows-sys 0.48.0", ] diff --git a/Cargo.toml b/Cargo.toml index 7095fe5975..21574b66fc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ord" description = "◉ Ordinal wallet and block explorer" -version = "0.12.2" +version = "0.12.3" license = "CC0-1.0" edition = "2021" autotests = false