From 6ce356cdbf5970c075b671ebada53b18b7f0e8f8 Mon Sep 17 00:00:00 2001 From: "release-plz-andogq[bot]" <170482136+release-plz-andogq[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 10:42:07 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- crates/qubit-macros/CHANGELOG.md | 5 +++++ crates/qubit-macros/Cargo.toml | 2 +- 5 files changed, 19 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d4e371b..43cdbcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.8](https://github.com/andogq/qubit/compare/qubit-v0.0.7...qubit-v0.0.8) - 2024-05-22 + +### Fixed +- properly handle unit return type from handlers + +### Other +- remove whitespace in readme +- add badges to readme + ## [0.0.7](https://github.com/andogq/qubit/compare/qubit-v0.0.6...qubit-v0.0.7) - 2024-05-22 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 296dd34..becfb14 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -677,7 +677,7 @@ dependencies = [ [[package]] name = "qubit" -version = "0.0.7" +version = "0.0.8" dependencies = [ "axum", "futures", @@ -694,7 +694,7 @@ dependencies = [ [[package]] name = "qubit-macros" -version = "0.0.5" +version = "0.0.6" dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 63ae0a9..c7d793e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ workspace = { members = ["./crates/*", "./examples/*"] } [package] name = "qubit" -version = "0.0.7" +version = "0.0.8" edition = "2021" authors = ["Tom Anderson "] repository = "https://github.com/andogq/qubit" @@ -22,4 +22,4 @@ serde_json = "1.0.111" tokio = { version = "1.35.1", features = ["rt", "rt-multi-thread"] } tower = "0.4.13" ts-rs = "8.1.0" -qubit-macros = { version = "0.0.5", path = "./crates/qubit-macros" } +qubit-macros = { version = "0.0.6", path = "./crates/qubit-macros" } diff --git a/crates/qubit-macros/CHANGELOG.md b/crates/qubit-macros/CHANGELOG.md index 8521ea3..36ccda6 100644 --- a/crates/qubit-macros/CHANGELOG.md +++ b/crates/qubit-macros/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/andogq/qubit/compare/qubit-macros-v0.0.5...qubit-macros-v0.0.6) - 2024-05-22 + +### Fixed +- properly handle unit return type from handlers + ## [0.0.5](https://github.com/andogq/qubit/compare/qubit-macros-v0.0.4...qubit-macros-v0.0.5) - 2024-05-22 ### Other diff --git a/crates/qubit-macros/Cargo.toml b/crates/qubit-macros/Cargo.toml index fda6422..7e9e25d 100644 --- a/crates/qubit-macros/Cargo.toml +++ b/crates/qubit-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "qubit-macros" -version = "0.0.5" +version = "0.0.6" edition = "2021" description = "Macros to accompany `qubit`." license = "MIT"