From 2e36fafa712be21d7e151cb6f93197928fda63a6 Mon Sep 17 00:00:00 2001 From: github-actions Date: Tue, 5 Sep 2023 20:29:41 +0000 Subject: [PATCH] chore(version): 0.5.0 --- CHANGELOG.md | 16 ++++++++++++++++ server/CHANGELOG.md | 13 +++++++++++++ server/Cargo.lock | 4 ++-- server/Cargo.toml | 4 ++-- server/macros/CHANGELOG.md | 13 +++++++++++++ server/macros/Cargo.toml | 2 +- 6 files changed, 47 insertions(+), 5 deletions(-) create mode 100644 server/macros/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 10f9f6f..9f40e26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,22 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## [0.5.0](https://github.com/szattila98/binge_at_home/compare/0.4.0..0.5.0) - 2023-09-05 +### Package updates +- [macros](server/macros) bumped to [macros-0.1.0](https://github.com/szattila98/binge_at_home/compare/2399c6f6a128d954c6644f190614d3fee1f507a4..macros-0.1.0) +- [server-0.3.0](server) bumped to [server-0.3.0](https://github.com/szattila98/binge_at_home/compare/server-0.2.0..server-0.3.0) +### Global changes +#### Continuous Integration +- **(macros)** fixed release again - ([af1b9a1](https://github.com/szattila98/binge_at_home/commit/af1b9a16c1c09d218f1d288c6ca15acb1dcfc53e)) - [@szattila98](https://github.com/szattila98) +- **(server)** fixing postgres tests in github actions - ([8c6e1d9](https://github.com/szattila98/binge_at_home/commit/8c6e1d9ecb3ab110e13d9e69f51ec8e1e1487c02)) - [@szattila98](https://github.com/szattila98) +#### Features +- **(macros)** Added macros crate and random emojis macro - ([8967093](https://github.com/szattila98/binge_at_home/commit/89670930894d120ab90441306f25b84eeaa4d496)) - [@szattila98](https://github.com/szattila98) +#### Tests +- **(server)** added some catalog crud tests - ([6c9b0d2](https://github.com/szattila98/binge_at_home/commit/6c9b0d2fd40cdc6ad628d52e79590ee7175ee1cf)) - [@szattila98](https://github.com/szattila98) +- **(server)** Added some tests - ([8e43b8c](https://github.com/szattila98/binge_at_home/commit/8e43b8c5d5121e3a604b72dc5d10a24244728131)) - [@szattila98](https://github.com/szattila98) + +- - - + ## [0.4.0](https://github.com/szattila98/binge_at_home/compare/0.3.0..0.4.0) - 2023-08-29 ### Package updates - [server-0.2.0](server) bumped to [server-0.2.0](https://github.com/szattila98/binge_at_home/compare/server-0.1.0..server-0.2.0) diff --git a/server/CHANGELOG.md b/server/CHANGELOG.md index bf75f27..08f3581 100644 --- a/server/CHANGELOG.md +++ b/server/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - +## server-0.3.0 - 2023-09-05 +#### Continuous Integration +- **(macros)** fixed versioning - (bdfa92f) - *szattila98* +#### Features +- **(macros)** Added macros crate and random emojis macro - (8967093) - *szattila98* +#### Tests +- **(server)** commented out crud tests as these are better as integration tests - (cf1e9d4) - *szattila98* +- **(server)** added some catalog crud tests - (6c9b0d2) - *szattila98* +- **(server)** Added some tests - (8e43b8c) - *szattila98* +- **(server)** tested crud commons - (8751d15) - *szattila98* + +- - - + ## server-0.2.0 - 2023-08-29 #### Bug Fixes - **(server)** fixed migrations and tried out some queries - (fbbfa0b) - *szattila98* diff --git a/server/Cargo.lock b/server/Cargo.lock index 4f7015e..357582f 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -205,7 +205,7 @@ checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" [[package]] name = "binge-at-home" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-trait", @@ -968,7 +968,7 @@ checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" [[package]] name = "macros" -version = "0.0.0" +version = "0.1.0" dependencies = [ "emojis", "pretty_assertions", diff --git a/server/Cargo.toml b/server/Cargo.toml index cc4bff6..ad7c10b 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "binge-at-home" -version = "0.2.0" +version = "0.3.0" description = "Self-hosted video streaming application" edition = "2021" @@ -27,7 +27,7 @@ axum = { version = "0.6.20", features = ["macros"] } axum-extra = { version = "0.7.7", features = ["typed-routing"] } confique = { version = "0.2.4", default-features = false, features = ["yaml"] } convert_case = "0.6.0" -macros = { version = "0.0.0", path = "macros" } +macros = { version = "0.1.0", path = "macros" } secrecy = { version = "0.8.0", features = ["serde"] } serde = { version = "1.0.183", features = ["derive"] } serde_json = "1.0.105" diff --git a/server/macros/CHANGELOG.md b/server/macros/CHANGELOG.md new file mode 100644 index 0000000..a43c1cf --- /dev/null +++ b/server/macros/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog +All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. + +- - - +## macros-0.1.0 - 2023-09-05 +#### Continuous Integration +- **(macros)** fixed versioning - (bdfa92f) - *szattila98* +#### Features +- **(macros)** Added macros crate and random emojis macro - (8967093) - *szattila98* + +- - - + +Changelog generated by [cocogitto](https://github.com/cocogitto/cocogitto). \ No newline at end of file diff --git a/server/macros/Cargo.toml b/server/macros/Cargo.toml index d9454ca..b7a9a83 100644 --- a/server/macros/Cargo.toml +++ b/server/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "macros" -version = "0.0.0" +version = "0.1.0" description = "Macro library used by the project" edition = "2021"