diff --git a/CHANGELOG.md b/CHANGELOG.md index 5aca2f2..e4f9915 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,31 @@ 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). +## 3.3.1 (2024-02-12) + +### Bug Fixes + + - Use `AtomicI32` instead of I64 for compatibility with `armel` + +### Commit Statistics + + + + - 1 commit contributed to the release. + - 2 days passed between releases. + - 1 commit was understood as [conventional](https://www.conventionalcommits.org). + - 1 unique issue was worked on: [#99](https://github.com/Byron/trash-rs/issues/99) + +### Commit Details + + + +
view details + + * **[#99](https://github.com/Byron/trash-rs/issues/99)** + - Use `AtomicI32` instead of I64 for compatibility with `armel` ([`98049f1`](https://github.com/Byron/trash-rs/commit/98049f1316e3902f2c9d5cd51f8de14b86ec5828)) +
+ ## 3.3.0 (2024-02-10) ### New Features @@ -20,7 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - - 5 commits contributed to the release over the course of 5 calendar days. + - 6 commits contributed to the release over the course of 5 calendar days. - 25 days passed between releases. - 2 commits were understood as [conventional](https://www.conventionalcommits.org). - 1 unique issue was worked on: [#99](https://github.com/Byron/trash-rs/issues/99) @@ -34,6 +59,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * **[#99](https://github.com/Byron/trash-rs/issues/99)** - Use `AtomicI32` in tests for compatibility with `armel` platform ([`920ff0c`](https://github.com/Byron/trash-rs/commit/920ff0c69f6d0309e73f86aaa437aec9508cc873)) * **Uncategorized** + - Release trash v3.3.0 ([`d0d8f26`](https://github.com/Byron/trash-rs/commit/d0d8f26030e0936aa57aa1d0d4e1a34f6a91f5b9)) - Improved error granularity ([`452be83`](https://github.com/Byron/trash-rs/commit/452be8303c797f44409b487c0cf1e6ffb2899110)) - Removed tracing. ([`2b1c9fa`](https://github.com/Byron/trash-rs/commit/2b1c9fa2a9743c1d5477bf5512ba0f260cfdacb5)) - Bug fix for macOS. ([`b238938`](https://github.com/Byron/trash-rs/commit/b238938d7d6387d7340f9c6a30025c9255973180)) diff --git a/Cargo.toml b/Cargo.toml index 3c66d39..8b04af8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ [package] name = "trash" -version = "3.3.0" +version = "3.3.1" authors = ["Artur Kovacs "] license = "MIT" readme = "README.md"