From 4a1941ddb9007ec2a229f9f7bd8bf982480782e4 Mon Sep 17 00:00:00 2001 From: Max Countryman Date: Sat, 9 Mar 2024 10:36:05 -0800 Subject: [PATCH] mark 0.5.0 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c191c85..c35d743 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Unreleased +# 0.5.0 + +**Breaking Changes** + +- Allow providing optional metadata for messages #8, #9 + +This change updates the `push` method to include an optional metadata argument; other methods are unchanged. A new set of `*_with_medata` postfixed methods is also provided. + # 0.4.0 - Update `tower-sessions` to 0.11.0 diff --git a/Cargo.toml b/Cargo.toml index ce40626..03b0056 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "axum-messages" -version = "0.4.0" +version = "0.5.0" edition = "2021" authors = ["Max Countryman "] categories = ["asynchronous", "network-programming", "web-programming"] diff --git a/README.md b/README.md index ca54928..94133ed 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ To use the crate in your project, add the following to your `Cargo.toml` file: ```toml [dependencies] -axum-messages = "0.4.0" +axum-messages = "0.5.0" ``` ## 🤸 Usage