version bump + changelog

This commit is contained in:
Ivan Akimov 2023-11-14 14:02:13 -06:00
parent 1b0ab4da29
commit 9f987886bc
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# CHANGELOG # CHANGELOG
**v0.3.1:**
- Improvement: impl error for Error [[PR #3](https://github.com/sqids/sqids-rust/pull/3)]
- Using `thiserror`
- Cargo update
**v0.3.0:** **⚠️ BREAKING CHANGE** **v0.3.0:** **⚠️ BREAKING CHANGE**
- **Breaking change**: IDs change. Algorithm has been fine-tuned for better performance [[Issue #11](https://github.com/sqids/sqids-spec/issues/11)] - **Breaking change**: IDs change. Algorithm has been fine-tuned for better performance [[Issue #11](https://github.com/sqids/sqids-spec/issues/11)]
- `alphabet` cannot contain multibyte characters - `alphabet` cannot contain multibyte characters

View File

@ -4,13 +4,13 @@ description = "Generate YouTube-like ids from numbers."
repository = "https://github.com/sqids/sqids-rust" repository = "https://github.com/sqids/sqids-rust"
documentation = "https://docs.rs/sqids" documentation = "https://docs.rs/sqids"
homepage = "https://sqids.org/rust" homepage = "https://sqids.org/rust"
version = "0.3.0" version = "0.3.1"
license = "MIT" license = "MIT"
edition = "2021" edition = "2021"
readme = "README.md" readme = "README.md"
keywords = ["ids", "encode", "short", "sqids", "hashids"] keywords = ["ids", "encode", "short", "sqids", "hashids"]
[dependencies] [dependencies]
serde = "1.0.190" serde = "1.0.192"
serde_json = "1.0.108" serde_json = "1.0.108"
thiserror = "1.0.50" thiserror = "1.0.50"