diff --git a/CHANGELOG.md b/CHANGELOG.md index e57e349..95f51db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,5 +10,16 @@ ### Removed + +## [0.1.0] - 2022-12-20 + +### Added + +- Added initial functions to generate v1 and v4 UUIDs, and generate namespaces +- Added initial `lipsum` function +- Added initial `jsonify` function + + +[Unreleased]: https://github.com/pluots/udf-suite/compare/0.1.0...HEAD [0.1.0]: https://github.com/pluots/udf-suite/compare/v0.0.1...v0.1.0 diff --git a/README.md b/README.md index 5d357a0..f168177 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ MariaDB [db]> select jsonify(uuid() as uuid, qty as quantity, cost) from t1 limi ## Lipsum -Uses the [lipsum crate] to generate lipsum strings. +Uses the [lipsum crate] to generate lipsum strings with a specified word count. ```sql diff --git a/test-integration/Cargo.toml b/test-integration/Cargo.toml index 4c98a16..529facc 100644 --- a/test-integration/Cargo.toml +++ b/test-integration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "test-integration" -version = "0.0.1" +version = "0.1.0" edition = "2021" publish = false diff --git a/udf-jsonify/Cargo.toml b/udf-jsonify/Cargo.toml index 37910b3..1b9c14a 100644 --- a/udf-jsonify/Cargo.toml +++ b/udf-jsonify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-jsonify" -version = "0.0.1" +version = "0.1.0" edition = "2021" publish = false diff --git a/udf-lipsum/Cargo.toml b/udf-lipsum/Cargo.toml index 30675fe..9e2e71d 100644 --- a/udf-lipsum/Cargo.toml +++ b/udf-lipsum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-lipsum" -version = "0.0.1" +version = "0.1.0" edition = "2021" publish = false diff --git a/udf-uuid/Cargo.toml b/udf-uuid/Cargo.toml index 84bb986..a22440f 100644 --- a/udf-uuid/Cargo.toml +++ b/udf-uuid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "udf-uuid" -version = "0.0.1" +version = "0.1.0" edition = "2021" publish = false