diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..bf195df --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +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). + +## [Unreleased] + +## [0.10.2](https://github.com/nyurik/sqlite-hashes/compare/v0.10.1...v0.10.2) - 2025-06-06 + +- refactored CI, enabled release automation diff --git a/Cargo.lock b/Cargo.lock index e861ebd..ac33369 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -834,7 +834,7 @@ checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" [[package]] name = "sqlite-hashes" -version = "0.10.1" +version = "0.10.2" dependencies = [ "blake3", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 1581a70..cf7cae0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,7 @@ [package] name = "sqlite-hashes" -version = "0.10.1" # This value is also used in the README.md +# !!! This value is also used in the README.md +version = "0.10.2" description = "Hashing functions for SQLite with aggregation support: MD5, SHA1, SHA256, SHA512, Blake3, FNV-1a, xxHash" authors = ["Yuri Astrakhan "] repository = "https://github.com/nyurik/sqlite-hashes"