diff --git a/CHANGES.md b/CHANGES.md new file mode 100644 index 0000000..e996496 --- /dev/null +++ b/CHANGES.md @@ -0,0 +1,10 @@ +# Changelog +All notable changes to this project will be documented in this file. + +## [1.0.0] - 2023-11-24 +### Changed +- Transitioned from cargo actions to Docker Compose actions, enabling Docker Compose to run on CI. This change enhances the continuous integration process by leveraging the capabilities of Docker Compose for building and testing the application. +- Upgraded Yew to a newer version, ensuring the frontend framework is up-to-date with the latest features and improvements. +- Replaced PostgreSQL with SQLx for database interactions. This shift to SQLx modernizes the database access layer, providing more flexibility and asynchronous support. + +(PR [#26](https://github.com/security-union/yew-actix-template/pull/26)) diff --git a/actix-api/Cargo.toml b/actix-api/Cargo.toml index 7b9604f..a343235 100644 --- a/actix-api/Cargo.toml +++ b/actix-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-api" -version = "0.1.0" +version = "1.2.3" edition = "2021" repository = "https://github.com/security-union/yew-actix-template.git" description = "Actix-web backend" diff --git a/types/Cargo.toml b/types/Cargo.toml index 554941a..f0954c2 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "types" -version = "0.1.0" +version = "1.2.3" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/yew-ui/Cargo.toml b/yew-ui/Cargo.toml index b90aeaa..8242d60 100644 --- a/yew-ui/Cargo.toml +++ b/yew-ui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yew-ui" -version = "0.1.0" +version = "1.2.3" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html