From 285e1bdd9dde5959a2c9e041511a9d9f17fb8f96 Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Thu, 5 Oct 2023 17:39:57 -0400 Subject: [PATCH] Prepare for v0.1.10 release --- CHANGELOG.md | 17 ++++++++++++++--- test-integration/Cargo.toml | 2 +- udf-hash/Cargo.toml | 2 +- udf-jsonify/Cargo.toml | 2 +- udf-lipsum/Cargo.toml | 2 +- udf-net/Cargo.toml | 2 +- udf-uuid/Cargo.toml | 2 +- 7 files changed, 20 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 396ad9a..f98c859 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,12 +6,22 @@ ### Added +### Changed + + +## [0.1.10] - 2023-10-05 + +### Added +Added hash algorithms for `sha1`, `sha2`, `sha3`, `md5`, and threaded `blake` +versions. ### Changed -`blake*` and `xxhash*` functions were moved to the new `udf-hash` library -(output `libudf_hash.so`). +- `blake*` and `xxhash*` functions were moved to the new `udf-hash` library + (output `libudf_hash.so`). +- Hash functions now return hex by default. For binary output, a `_bin` + version of each function is now provided. ## [0.1.9] - 2023-10-04 @@ -101,7 +111,8 @@ Changed licensing from 'Apache-2.0' to 'Apache-2.0 OR GPL-2.0-or-later' -[Unreleased]: https://github.com/pluots/udf-suite/compare/v0.1.9...HEAD +[Unreleased]: https://github.com/pluots/udf-suite/compare/v0.1.10...HEAD +[0.1.10]: https://github.com/pluots/udf-suite/compare/v0.1.9...v0.1.10 [0.1.9]: https://github.com/pluots/udf-suite/compare/v0.1.8...v0.1.9 [0.1.8]: https://github.com/pluots/udf-suite/compare/v0.1.7...v0.1.8 [0.1.7]: https://github.com/pluots/udf-suite/compare/v0.1.6...v0.1.7 diff --git a/test-integration/Cargo.toml b/test-integration/Cargo.toml index 1c45bcf..57384bf 100644 --- a/test-integration/Cargo.toml +++ b/test-integration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-integration" -version = "0.1.9" +version = "0.1.10" edition = "2021" publish = false license = "Apache-2.0 OR GPL-2.0-or-later" diff --git a/udf-hash/Cargo.toml b/udf-hash/Cargo.toml index d84719c..caea3a1 100644 --- a/udf-hash/Cargo.toml +++ b/udf-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-hash" -version = "0.1.9" +version = "0.1.10" edition = "2021" publish = false license = "Apache-2.0 OR GPL-2.0-or-later" diff --git a/udf-jsonify/Cargo.toml b/udf-jsonify/Cargo.toml index 23a861a..353e822 100644 --- a/udf-jsonify/Cargo.toml +++ b/udf-jsonify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-jsonify" -version = "0.1.9" +version = "0.1.10" edition = "2021" publish = false license = "Apache-2.0 OR GPL-2.0-or-later" diff --git a/udf-lipsum/Cargo.toml b/udf-lipsum/Cargo.toml index 8cd4eb1..54c03f1 100644 --- a/udf-lipsum/Cargo.toml +++ b/udf-lipsum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-lipsum" -version = "0.1.9" +version = "0.1.10" edition = "2021" publish = false license = "Apache-2.0 OR GPL-2.0-or-later" diff --git a/udf-net/Cargo.toml b/udf-net/Cargo.toml index ceb77bd..dfa344e 100644 --- a/udf-net/Cargo.toml +++ b/udf-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-net" -version = "0.1.9" +version = "0.1.10" edition = "2021" publish = false license = "Apache-2.0 OR GPL-2.0-or-later" diff --git a/udf-uuid/Cargo.toml b/udf-uuid/Cargo.toml index 66cc418..99fbad3 100644 --- a/udf-uuid/Cargo.toml +++ b/udf-uuid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-uuid" -version = "0.1.9" +version = "0.1.10" edition = "2021" publish = false license = "Apache-2.0 OR GPL-2.0-or-later"