diff --git a/CHANGELOG.md b/CHANGELOG.md index 0053e93..74f857f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## Release v1.2.0 (12th Jan 2025) + +- feat: Split lib and package functionality to enable integration testing + - refactor: Hand over conn rather than self-serve + - refactor: Move CONFIG out of common, db and error + - refactor: Move non-db logic from db to utils + - feat: Internal cptserver library src/lib.rs + - feat: Static config for a test database + - feat: Initial integration test for database connection + - fix: Reworked non-functional unit test at print_sql/prep_sql +- feat: Added file_url to licenses +- feat: Changed license number from u8 to String +- feat: Increased nickname length from 20 to 40 +- refactor: Renamed db updates to db migrations +- fix: Missing default values of organisation rights +- chore: DB status and release package folder +- chore: Update DB schema to v2 + ## Release v1.1.0 (21st Dec 2024) - feat: Added user bank accounts diff --git a/Cargo.lock b/Cargo.lock index c8aa21e..da33c1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -415,7 +415,7 @@ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" [[package]] name = "cptserver" -version = "1.1.0" +version = "1.2.0" dependencies = [ "chrono", "confy", diff --git a/Cargo.toml b/Cargo.toml index 348ffa6..37e4f86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cptserver" -version = "1.1.0" +version = "1.2.0" authors = ["Moritz Oberhauser "] edition = "2021"