From b2a68cb62fc0d758ff8eee1ae32bbc0d91c7b770 Mon Sep 17 00:00:00 2001 From: Matthew Planchard Date: Tue, 3 Aug 2021 19:35:00 -0400 Subject: [PATCH] chore: bump version to 1.1.0 In retrospect, while the interface change for `is_cuid()` and `is_slug()` should be mostly transparent, there are some cases where it might break things, so bumping the minor version to communicate that. --- CHANGELOG.md | 6 +++--- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa6bf93..033823f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.3] - 2021-08-03 +## [1.1.0] - 2021-08-03 ### Fixed @@ -66,8 +66,8 @@ 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.3...HEAD -[1.0.3]: https://github.com/mplanchard/cuid-rust/compare/v1.0.2...v1.0.3 +[unreleased]: https://github.com/mplanchard/cuid-rust/compare/v1.1.0...HEAD +[1.1.0]: https://github.com/mplanchard/cuid-rust/compare/v1.0.2...v1.1.0 [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 diff --git a/Cargo.toml b/Cargo.toml index a6199ce..46cfd3c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cuid" -version = "1.0.3" +version = "1.1.0" license = "MIT" edition = "2018" authors = ["Matthew Planchard "] diff --git a/README.md b/README.md index abcb7cd..e96abc1 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.3" +cuid = "1.1.0" ``` ## Usage