From 06cd89ded56cee67ae224025220ca46a4039cf18 Mon Sep 17 00:00:00 2001 From: nwrenger Date: Sat, 3 Aug 2024 03:37:08 +0200 Subject: [PATCH] :sparkles: Bump version --- Cargo.toml | 4 ++-- README.md | 2 +- macros/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1be16e6..326b6a5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gluer" -version = "0.5.1" +version = "0.5.2" edition = "2021" authors = ["Nils Wrenger "] description = "A wrapper for Rust frameworks that eliminates redundant type and function definitions between the frontend and backend" @@ -14,7 +14,7 @@ license = "MIT" [lib] [dependencies] -gluer-macros = { path = "macros", version = "0.5.1" } +gluer-macros = { path = "macros", version = "0.5.2" } axum = "0.7.5" [dev-dependencies] diff --git a/README.md b/README.md index 765c387..5ff4cb9 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -gluer = "0.5.1" +gluer = "0.5.2" ``` ## Features diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 23a64dc..8fd0ab0 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gluer-macros" -version = "0.5.1" +version = "0.5.2" edition = "2021" authors = ["Nils Wrenger "] description = "Procedural macros for the gluer framework"