From ccb6df2fafe1f12bff84cfa28cffddbab4879ca5 Mon Sep 17 00:00:00 2001 From: Denis Cornehl Date: Sun, 4 Jan 2026 15:50:58 +0100 Subject: [PATCH] tag 0.22.0 release --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2263c37..d3966fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [0.22.0] - 2026-04-01 + +* **BREAKING**: replace lazy_static with LazyLock, add MSRV to what is in the code +* upgrade dependencies: `attohttpc`, `toml`, `remove_dir_all`, `getrandom`, + `thiserror`, `git2`, `nix` +* update to edition 2024, fix clippy errors + ## [0.21.0] - 2025-12-02 * **BREAKING** categorize more previously uncategorised cargo errors diff --git a/Cargo.toml b/Cargo.toml index 327b541..7fc091b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustwide" -version = "0.21.0" +version = "0.22.0" edition = "2024" build = "build.rs" rust-version = "1.89"