From ee15811e5f2b165a01694a8ca0f06067de4b1b11 Mon Sep 17 00:00:00 2001 From: Greg Martin Date: Mon, 11 Dec 2023 16:21:06 +0000 Subject: [PATCH] Release 0.8.2-gm8 --- CHANGELOG.md | 30 ++++++++++++++++++------------ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 20 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d16b06bfb8..1945869a9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,52 +1,58 @@ Changelog ========= +[0.8.2-gm8](https://github.com/gmart7t2/ord/releases/tag/0.8.2-gm8) - 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. + [0.8.2-gm7](https://github.com/gmart7t2/ord/releases/tag/0.8.2-gm7) - 2023-11-25 -------------------------------------------------------------------------------- ### Changed -Fixed coin selection algorithm (#2723). +- Fixed coin selection algorithm (#2723). [0.8.2-gm6](https://github.com/gmart7t2/ord/releases/tag/0.8.2-gm6) - 2023-08-31 -------------------------------------------------------------------------------- ### Added --- Add `--wait-after-commit` flag to `wallet inscribe`. This causes the reveal transactions not to be broadcast until the commit transaction has been confirmed. Use in conjunction with `--dump` to make sure you have a copy of the reveal transactions to prevent loss of funds in the event that the ord command gets interrupted before the commit transaction confirms. +- Add `--wait-after-commit` flag to `wallet inscribe`. This causes the reveal transactions not to be broadcast until the commit transaction has been confirmed. Use in conjunction with `--dump` to make sure you have a copy of the reveal transactions to prevent loss of funds in the event that the ord command gets interrupted before the commit transaction confirms. [0.8.2-gm5](https://github.com/gmart7t2/ord/releases/tag/0.8.2-gm5) - 2023-08-31 -------------------------------------------------------------------------------- ### Added --- Add `--no-signature` flag to `wallet inscribe`. It leaves the reveal transaction unsigned, making it smaller, cheaper, and trivially easy to steal. Do not use! +- Add `--no-signature` flag to `wallet inscribe`. It leaves the reveal transaction unsigned, making it smaller, cheaper, and trivially easy to steal. Do not use! [0.8.2-gm4](https://github.com/gmart7t2/ord/releases/tag/0.8.2-gm4) - 2023-08-25 -------------------------------------------------------------------------------- ### Changed --- Fix `wallet inscriptions` so it can list multiple inscriptions on the same sat. --- Fix help string for `wallet inscriptions --address`. --- Add `--allow-missing-outputs` flag to allow ord to work on wallets with old outputs. --- Create savepoint if it has been `SAVEPOINT_INTERVAL` blocks since the last one. +- Fix `wallet inscriptions` so it can list multiple inscriptions on the same sat. +- Fix help string for `wallet inscriptions --address`. +- Add `--allow-missing-outputs` flag to allow ord to work on wallets with old outputs. +- Create savepoint if it has been `SAVEPOINT_INTERVAL` blocks since the last one. [0.8.2-gm3](https://github.com/gmart7t2/ord/releases/tag/0.8.2-gm3) - 2023-08-24 -------------------------------------------------------------------------------- ### Changed --- Fix `--single-key` when inscribing the same file multiple times. --- Add logging to the new server endpoints. +- Fix `--single-key` when inscribing the same file multiple times. +- Add logging to the new server endpoints. [0.8.2-gm2](https://github.com/gmart7t2/ord/releases/tag/0.8.2-gm2) - 2023-08-23 -------------------------------------------------------------------------------- ### Changed --- Store 4 bytes per outpoint not 3, to reduce the number of collisions. +- Store 4 bytes per outpoint not 3, to reduce the number of collisions. [0.8.2-gm1](https://github.com/gmart7t2/ord/releases/tag/0.8.2-gm1) - 2023-08-22 -------------------------------------------------------------------------------- ### Changed --- Merged 0.8.2 from upstream. --- Small fix to reorg logging. +- Merged 0.8.2 from upstream. +- Small fix to reorg logging. [0.8.2](https://github.com/ordinals/ord/releases/tag/0.8.2) - 2023-08-17 --------------------------------------------------------------------- diff --git a/Cargo.lock b/Cargo.lock index daf4b2c26f..9ee0eb65f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2009,7 +2009,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "ord" -version = "0.8.2-gm7" +version = "0.8.2-gm8" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 8f8c90eb2c..c8555bca40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ord" description = "◉ Ordinal wallet and block explorer" -version = "0.8.2-gm7" +version = "0.8.2-gm8" license = "CC0-1.0" edition = "2021" autotests = false