From 47b858dc34721101bf4c36f421a0738b7b3889ca Mon Sep 17 00:00:00 2001 From: Greg Martin Date: Mon, 11 Dec 2023 15:19:56 +0000 Subject: [PATCH] Release 0.11.1-gm6 --- CHANGELOG.md | 26 +++++++++++++++++--------- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2138d7b713..6e0e1c7f68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,31 +1,39 @@ Changelog ========= +[0.11.1-gm6](https://github.com/gmart7t2/ord/releases/tag/0.11.1-gm6) - 2023-12-11 +---------------------------------------------------------------------------------- + +### Added +- Add option `--index-transfers` to have the index track which inscriptions are transferred in each block. Previously this was already enabled, using up space in the index whether it was needed or not. +- Fix issue with the --key getting backed up to the wallet and breaking the reveal tx witnesses. +- Add `--force-input` to `wallet inscribe` and `wallet send`. + [0.11.1-gm5](https://github.com/gmart7t2/ord/releases/tag/0.11.1-gm5) - 2023-11-23 ---------------------------------------------------------------------------------- ### Added -Add `--ignore-cursed` flag to treat all cursed inscriptions as regular inscriptions when indexing. -Add `--ordinals-wallet` flag to `wallet restore` to help with recovering coins from an ordinalswallet seed phrase. -Add some experimental options to allow creating just a commit tx, or just a reveal tx. +- Add `--ignore-cursed` flag to treat all cursed inscriptions as regular inscriptions when indexing. +- Add `--ordinals-wallet` flag to `wallet restore` to help with recovering coins from an ordinalswallet seed phrase. +- Add some experimental options to allow creating just a commit tx, or just a reveal tx. ### Changed -Add a max-weight check to the `wallet send-many` command. -Fixed coin selection algorithm (#2723). +- Add a max-weight check to the `wallet send-many` command. +- Fixed coin selection algorithm (#2723). [0.11.1-gm4](https://github.com/gmart7t2/ord/releases/tag/0.11.1-gm4) - 2023-11-19 ---------------------------------------------------------------------------------- ### Added -Add `--dump` and `--no-broadcast` flags to `wallet inscribe`. -Add `wallet send-many` to allow sending multiple inscriptions in a single command. +- Add `--dump` and `--no-broadcast` flags to `wallet inscribe`. +- Add `wallet send-many` to allow sending multiple inscriptions in a single command. [0.11.1-gm3](https://github.com/gmart7t2/ord/releases/tag/0.11.1-gm3) - 2023-11-15 ---------------------------------------------------------------------------------- ### Added -Add `--key` flag to `wallet inscribe` to allow using a specific recovery key. -Add `--ignore-outdated-index` flag to allow ord to run without having to fully index the blockchain. Be careful. Inscriptions that haven't been indexed will be treated as if they are cardinals, and so can be accidentally sent to spent as fees. +- Add `--key` flag to `wallet inscribe` to allow using a specific recovery key. +- Add `--ignore-outdated-index` flag to allow ord to run without having to fully index the blockchain. Be careful. Inscriptions that haven't been indexed will be treated as if they are cardinals, and so can be accidentally sent to spent as fees. [0.11.1-gm2](https://github.com/gmart7t2/ord/releases/tag/0.11.1-gm2) - 2023-11-14 ---------------------------------------------------------------------------------- diff --git a/Cargo.lock b/Cargo.lock index d367faff88..57c8353a7b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2036,7 +2036,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "ord" -version = "0.11.1-gm5" +version = "0.11.1-gm6" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index bb3783cae2..85559544f6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ord" description = "◉ Ordinal wallet and block explorer" -version = "0.11.1-gm5" +version = "0.11.1-gm6" license = "CC0-1.0" edition = "2021" autotests = false