From d67aa5f7d6ae726dc544b3f08482193cc3f4595d Mon Sep 17 00:00:00 2001 From: Trevor Gross Date: Sat, 10 Feb 2024 22:01:01 -0600 Subject: [PATCH] Generate v0.2.0 release --- CHANGELOG.md | 15 +++++++++++++-- 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-stringops/Cargo.toml | 2 +- udf-uuid/Cargo.toml | 2 +- 8 files changed, 20 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eb268b1..40bf559 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,17 @@ ### Added -Add the `levenshtein` string distance algorithm. +### Changed + + +## [0.2.0] - 2024-02-10 + +From this release forward, adding a new function will be considered a minor +release. This should be more semver-accurate. + +### Added + +Add the `levenshtein` and `levenshtein_normalized` string distance algorithms. ## [0.1.10] - 2023-10-05 @@ -111,7 +121,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.10...HEAD +[Unreleased]: https://github.com/pluots/udf-suite/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/pluots/udf-suite/compare/v0.1.10...v0.2.0 [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 diff --git a/test-integration/Cargo.toml b/test-integration/Cargo.toml index 4b91c27..dcbb1ae 100644 --- a/test-integration/Cargo.toml +++ b/test-integration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-integration" -version = "0.1.10" +version = "0.2.0" 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 30909cc..90613cf 100644 --- a/udf-hash/Cargo.toml +++ b/udf-hash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-hash" -version = "0.1.10" +version = "0.2.0" 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 a6a5557..36a342b 100644 --- a/udf-jsonify/Cargo.toml +++ b/udf-jsonify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-jsonify" -version = "0.1.10" +version = "0.2.0" 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 54c03f1..0a3eb11 100644 --- a/udf-lipsum/Cargo.toml +++ b/udf-lipsum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-lipsum" -version = "0.1.10" +version = "0.2.0" 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 dfa344e..63a6963 100644 --- a/udf-net/Cargo.toml +++ b/udf-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-net" -version = "0.1.10" +version = "0.2.0" edition = "2021" publish = false license = "Apache-2.0 OR GPL-2.0-or-later" diff --git a/udf-stringops/Cargo.toml b/udf-stringops/Cargo.toml index 5270283..903e927 100644 --- a/udf-stringops/Cargo.toml +++ b/udf-stringops/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-stringops" -version = "0.1.10" +version = "0.2.0" 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 376049b..7fe8b02 100644 --- a/udf-uuid/Cargo.toml +++ b/udf-uuid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-uuid" -version = "0.1.10" +version = "0.2.0" edition = "2021" publish = false license = "Apache-2.0 OR GPL-2.0-or-later"