diff --git a/CHANGELOG.md b/CHANGELOG.md
index b02e458..5ced5e8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,34 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## 1.2.6 (2023-07-24)
+
+### Bug Fixes
+
+ - make `cargo-diet` work with recent cargo's that use the `sparse` registry
+
+### Commit Statistics
+
+
+
+ - 4 commits contributed to the release over the course of 128 calendar days.
+ - 128 days passed between releases.
+ - 1 commit was understood as [conventional](https://www.conventionalcommits.org).
+ - 0 issues like '(#ID)' were seen in commit messages
+
+### Commit Details
+
+
+
+view details
+
+ * **Uncategorized**
+ - Make `cargo-diet` work with recent cargo's that use the `sparse` registry ([`d60e277`](https://github.com/the-lean-crate/cargo-diet/commit/d60e277a525679e6f484ffecf2225325b7923ef3))
+ - Fix journey tests by allowing cargo package to go online ([`6f189f9`](https://github.com/the-lean-crate/cargo-diet/commit/6f189f922ba5b2971557a8d967f57ba1e342eda5))
+ - Update dependencies and fix lints ([`14eee74`](https://github.com/the-lean-crate/cargo-diet/commit/14eee748ea9266434e96831df0bfe21d16fcb7a5))
+ - Try to fix installation test: latest doesn't work, explicit tag does. ([`3cefe38`](https://github.com/the-lean-crate/cargo-diet/commit/3cefe382712ab24869c7aa2521f024007fcab6c2))
+
+
## 1.2.5 (2023-03-17)
Update dependencies in this maintenance release.
@@ -13,7 +41,7 @@ Update dependencies in this maintenance release.
- - 4 commits contributed to the release over the course of 336 calendar days.
+ - 5 commits contributed to the release over the course of 336 calendar days.
- 337 days passed between releases.
- 0 commits were understood as [conventional](https://www.conventionalcommits.org).
- 0 issues like '(#ID)' were seen in commit messages
@@ -25,6 +53,7 @@ Update dependencies in this maintenance release.
view details
* **Uncategorized**
+ - Release cargo-diet v1.2.5 ([`8d41768`](https://github.com/the-lean-crate/cargo-diet/commit/8d41768aea1d83149d5d2ce266d918a44fe9cea5))
- Update changelog prior to relrease ([`6ed2215`](https://github.com/the-lean-crate/cargo-diet/commit/6ed22157fb456f9ce7a3992492f16fe6cdca7ac9))
- Upgrade rmp-serde ([`0d03342`](https://github.com/the-lean-crate/cargo-diet/commit/0d03342df5931c2881abdd0ce2f257dced3601aa))
- Update dependencies ([`1039553`](https://github.com/the-lean-crate/cargo-diet/commit/1039553dcb8060ca40537094e414cfa5a85633e4))
diff --git a/Cargo.lock b/Cargo.lock
index c446296..5caceab 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -123,7 +123,7 @@ checksum = "38fcc2979eff34a4b84e1cf9a1e3da42a7d44b3b690a40cdcb23e3d556cfb2e5"
[[package]]
name = "cargo-diet"
-version = "1.2.5"
+version = "1.2.6"
dependencies = [
"ansi_term",
"anyhow",
diff --git a/Cargo.toml b/Cargo.toml
index f60a2a2..ccc82ad 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cargo-diet"
-version = "1.2.5"
+version = "1.2.6"
authors = ["Sebastian Thiel "]
edition = "2018"
repository = "https://github.com/the-lean-crate/cargo-diet"