From 822a97b91373609e63b5cbdcb3f56581e7f0d0c3 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 23 Nov 2023 16:57:27 +0100 Subject: [PATCH 1/5] chore: release v1.2.0 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dae19bd9..ebce82130 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ +## [v1.2.0] - 2023-11-23 + +The major changes of this release: +- Trimming has been reworked such that the staking-min "pre-trims" the solution instead relying on the remote node to perform the trimming. +- The default port number in the URI can now be omitted. +- All dependencies are fetched from crates.io and the staking-miner can now be published on crates.io +- New prometheus metrics "staking_miner_trim_started" and ""staking_miner_trim_success" have been added to monitor the trimming status. + +### [Changed] +- chore: update deps to publish on crates.io ([#715](https://github.com/paritytech/staking-miner-v2/pull/715)) +- refactor(trimming): implement pre-trimming ([#687](https://github.com/paritytech/staking-miner-v2/pull/687)) ## [v1.1.0] - 2023-06-15 diff --git a/Cargo.lock b/Cargo.lock index 30421d130..d502fcb7b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5249,7 +5249,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staking-miner" -version = "1.1.0" +version = "1.2.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index c1210e13a..32016d83e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "staking-miner" -version = "1.1.0" +version = "1.2.0" authors = ["Parity Technologies "] edition = "2021" From 8e4a07040bfa3085aacffe52026b6675ff19154b Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 23 Nov 2023 17:11:14 +0100 Subject: [PATCH 2/5] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebce82130..7de5a721b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ The major changes of this release: - Trimming has been reworked such that the staking-min "pre-trims" the solution instead relying on the remote node to perform the trimming. - The default port number in the URI can now be omitted. - All dependencies are fetched from crates.io and the staking-miner can now be published on crates.io -- New prometheus metrics "staking_miner_trim_started" and ""staking_miner_trim_success" have been added to monitor the trimming status. +- New prometheus metrics "staking_miner_trim_started" and "staking_miner_trim_success" have been added to monitor the trimming status. ### [Changed] - chore: update deps to publish on crates.io ([#715](https://github.com/paritytech/staking-miner-v2/pull/715)) From ba5d8c246951e2fa28e4414e67e82e043bbd8463 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 23 Nov 2023 17:11:37 +0100 Subject: [PATCH 3/5] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7de5a721b..213f162ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,7 +13,7 @@ The major changes of this release: - New prometheus metrics "staking_miner_trim_started" and "staking_miner_trim_success" have been added to monitor the trimming status. ### [Changed] -- chore: update deps to publish on crates.io ([#715](https://github.com/paritytech/staking-miner-v2/pull/715)) +- chore: update deps to publish on crates.io ([#715](https://github.com/paritytech/staking-miner-v2/pull/715)) - refactor(trimming): implement pre-trimming ([#687](https://github.com/paritytech/staking-miner-v2/pull/687)) ## [v1.1.0] - 2023-06-15 From 3eace3457451e1f941f67fcc71e8fe3b3a21bf99 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 23 Nov 2023 17:12:02 +0100 Subject: [PATCH 4/5] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 213f162ad..c9624ecd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ The major changes of this release: ### [Changed] - chore: update deps to publish on crates.io ([#715](https://github.com/paritytech/staking-miner-v2/pull/715)) -- refactor(trimming): implement pre-trimming ([#687](https://github.com/paritytech/staking-miner-v2/pull/687)) +- refactor(trimming): implement pre-trimming ([#687](https://github.com/paritytech/staking-miner-v2/pull/687)) ## [v1.1.0] - 2023-06-15 From 26359047598ad3ea3801acefa7ef2651f1f952d2 Mon Sep 17 00:00:00 2001 From: Niklas Adolfsson Date: Thu, 23 Nov 2023 17:22:32 +0100 Subject: [PATCH 5/5] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9624ecd0..48b2388de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ The format is based on [Keep a Changelog]. ## [v1.2.0] - 2023-11-23 The major changes of this release: -- Trimming has been reworked such that the staking-min "pre-trims" the solution instead relying on the remote node to perform the trimming. +- Trimming has been reworked such that the staking-miner "pre-trims" the solution instead relying on the remote node to perform the trimming. - The default port number in the URI can now be omitted. - All dependencies are fetched from crates.io and the staking-miner can now be published on crates.io - New prometheus metrics "staking_miner_trim_started" and "staking_miner_trim_success" have been added to monitor the trimming status.