Skip to content

Commit

Permalink
✨ Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nwrenger committed Aug 2, 2024
1 parent 3361286 commit 72c12cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluer"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
authors = ["Nils Wrenger <nils@wrenger.net>"]
description = "A wrapper for Rust frameworks that eliminates redundant type and function definitions between the frontend and backend"
Expand All @@ -14,7 +14,7 @@ license = "MIT"
[lib]

[dependencies]
gluer-macros = { path = "macros", version = "0.4.2" }
gluer-macros = { path = "macros", version = "0.5.0" }
axum = "0.7.5"

[dev-dependencies]
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
gluer = "0.4.2"
gluer = "0.5.0"
```

## Features
Expand Down Expand Up @@ -102,7 +102,8 @@ async fn hello() -> Json<String> {
}

let mut app: Api<()> = Api::new()
// Add non-API-important routes or state by accessing axum's Router directly via inner_router
// Add non-API-important routes or state by
// accessing axum's Router directly via inner_router
.inner_router(|f| f.route("/", get(root)))
// Add API-important routes with the route function
.route("/hello-world", extract!(get(hello)));
Expand Down
2 changes: 1 addition & 1 deletion macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluer-macros"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
authors = ["Nils Wrenger <nils@wrenger.net>"]
description = "Procedural macros for the gluer framework"
Expand Down

0 comments on commit 72c12cc

Please sign in to comment.