From d1001ad9a2b456369df52358745b79b98d4c9d97 Mon Sep 17 00:00:00 2001 From: Matthew Planchard Date: Tue, 3 Aug 2021 19:32:25 -0400 Subject: [PATCH] chore: bump version to 1.0.3 --- CHANGELOG.md | 17 ++++++++++++++++- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf065f6..aa6bf93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.3] - 2021-08-03 + +### Fixed + +- 0-length strings now return `false` when being checked by `is_cuid()` rather + than panicking ([a4fca2f], reported by [@DeppLearning](https://github.com/DeppLearning)) + +### Changed + +- Improved specificity of `is_cuid()` and `is_slug()` checks ([a4fca2f]) +- Use references for `is_cuid()` and `is_slug()` rather than converting to + strings ([a4fca2f]) + ## [1.0.2] - 2021-04-01 ### Changed @@ -53,9 +66,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - CUID & CUID slug generation - Benchmark suite -[unreleased]: https://github.com/mplanchard/cuid-rust/compare/v1.0.2...HEAD +[unreleased]: https://github.com/mplanchard/cuid-rust/compare/v1.0.3...HEAD +[1.0.3]: https://github.com/mplanchard/cuid-rust/compare/v1.0.2...v1.0.3 [1.0.2]: https://github.com/mplanchard/cuid-rust/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/mplanchard/cuid-rust/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/mplanchard/cuid-rust/compare/v0.1.0...v1.0.0 [0.1.0]: https://github.com/mplanchard/cuid-rust/compare/b691e4c32e25d7239157e85598c74a9f59124417...v0.1.0 [@rasendubi]: https://github.com/rasendubi +[a4fca2f]: https://github.com/mplanchard/cuid-rust/commit/a4fca2f diff --git a/Cargo.toml b/Cargo.toml index 7f8b699..a6199ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cuid" -version = "1.0.2" +version = "1.0.3" license = "MIT" edition = "2018" authors = ["Matthew Planchard "] diff --git a/README.md b/README.md index 41ecee6..abcb7cd 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ implementation of which may be found [here](https://github.com/ericelliott/cuid) In cargo.toml ```toml -cuid = "1.0.2" +cuid = "1.0.3" ``` ## Usage