diff --git a/CHANGELOG.md b/CHANGELOG.md index 10e16e9..be7f82b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.7](https://github.com/nyurik/sqlite-hashes/compare/v0.10.6...v0.10.7) - 2025-08-28 + +### Other + +- *(ci)* improve cargo-install recipe +- *(ci)* disable telemetry in workflow +- ci cleanup +- improve get-create-field in justfile +- format Cargo.toml, minor just cleanup ([#109](https://github.com/nyurik/sqlite-hashes/pull/109)) +- [pre-commit.ci] pre-commit autoupdate ([#107](https://github.com/nyurik/sqlite-hashes/pull/107)) +- Bump actions/checkout from 4 to 5 in the all-actions-version-updates group ([#108](https://github.com/nyurik/sqlite-hashes/pull/108)) +- Bump rusqlite from 0.36.0 to 0.37.0 in the all-cargo-version-updates group ([#105](https://github.com/nyurik/sqlite-hashes/pull/105)) +- use release-plz token in dependabot ci +- Bump noncrypto-digests from 0.3.5 to 0.3.6 in the all-cargo-version-updates group ([#103](https://github.com/nyurik/sqlite-hashes/pull/103)) + ## [0.10.6](https://github.com/nyurik/sqlite-hashes/compare/v0.10.5...v0.10.6) - 2025-06-08 ### Other diff --git a/Cargo.lock b/Cargo.lock index 98c6335..a00f376 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -170,18 +170,18 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.45" +version = "4.5.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fc0e74a703892159f5ae7d3aac52c8e6c392f5ae5f359c70b5881d60aaac318" +checksum = "2c5e4fcf9c21d2e544ca1ee9d8552de13019a42aa7dbf32747fa7aaf1df76e57" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.5.44" +version = "4.5.46" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3e7f4214277f3c7aa526a59dd3fbe306a370daee1f8b7b8c987069cd8e888a8" +checksum = "fecb53a0e6fcfb055f686001bc2e2592fa527efaf38dbe81a6a9563562e57d41" dependencies = [ "anstyle", "clap_lex", @@ -689,9 +689,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.11.1" +version = "1.11.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912" dependencies = [ "aho-corasick", "memchr", @@ -701,9 +701,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.9" +version = "0.4.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" +checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6" dependencies = [ "aho-corasick", "memchr", @@ -712,9 +712,9 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.5" +version = "0.8.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" +checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001" [[package]] name = "rusqlite" @@ -825,7 +825,7 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "sqlite-hashes" -version = "0.10.6" +version = "0.10.7" dependencies = [ "blake3", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 3ddfe1c..86d2eb6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "sqlite-hashes" # This value is also used in the README.md -version = "0.10.6" +version = "0.10.7" 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"