Skip to content

Commit

Permalink
Prepare for v0.1.10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Oct 5, 2023
1 parent 71ebb08 commit 285e1bd
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 9 deletions.
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -101,7 +111,8 @@ Changed licensing from 'Apache-2.0' to 'Apache-2.0 OR GPL-2.0-or-later'

<!-- next-url -->

[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
Expand Down
2 changes: 1 addition & 1 deletion test-integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion udf-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion udf-jsonify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion udf-lipsum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion udf-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion udf-uuid/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 285e1bd

Please sign in to comment.