diff --git a/CHANGELOG.md b/CHANGELOG.md index c9ee5e86..9086e260 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.10](https://github.com/roadster-rs/roadster/compare/roadster-v0.5.9...roadster-v0.5.10) - 2024-07-25 + +### Added +- Use IDENTITY column for int primary keys instead of BIGSERIAL ([#293](https://github.com/roadster-rs/roadster/pull/293)) + +### Fixed +- Add "if exists" to user's drop_table migration statement ([#292](https://github.com/roadster-rs/roadster/pull/292)) + +### Other +- Add tests for schema and check helper methods ([#289](https://github.com/roadster-rs/roadster/pull/289)) + ## [0.5.9](https://github.com/roadster-rs/roadster/compare/roadster-v0.5.8...roadster-v0.5.9) - 2024-07-24 ### Added diff --git a/Cargo.toml b/Cargo.toml index f0c3c2b7..4131b4f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "roadster" -version = "0.5.9" +version = "0.5.10" edition = "2021" publish = true description = "A \"Batteries Included\" web framework for rust designed to get you moving fast."