Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danwilliams committed Sep 6, 2024
1 parent 744f35e commit 2517c66
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ The format is based on [Keep a Changelog][], and this project adheres to
[Semantic Versioning][].


## 0.6.0 (06 September 2024)

### Added

- Added MSRV (Minimum Supported Rust Version) in `Cargo.toml`, set to 1.81.0

### Changed

- Upgraded to [Axum][] 0.7 and [Hyper][] 1.0


## 0.5.4 (05 September 2024)

### Changed
Expand All @@ -21,7 +32,7 @@ The format is based on [Keep a Changelog][], and this project adheres to
- Updated lint configuration for Rust 1.81
- Updated crate dependencies
- Linted tests
- Moved linting configuration to Cargo.toml
- Moved linting configuration to `Cargo.toml`


## 0.5.3 (03 May 2024)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["crates/*"]

[workspace.package]
version = "0.5.4"
version = "0.6.0"
edition = "2021"
rust-version = "1.81.0"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/rubedo-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rubedo-macros"
version = "0.5.4"
version = "0.6.0"
description = "Proc macros for Rubedo"
categories = ["development-tools"]
keywords = ["macro", "library", "utility"]
Expand Down
4 changes: 2 additions & 2 deletions crates/rubedo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rubedo"
version = "0.5.4"
version = "0.6.0"
description = "Library of useful functionality and extensions"
categories = ["development-tools"]
keywords = ["library", "utility"]
Expand Down Expand Up @@ -30,7 +30,7 @@ http = "1.1.0"
http-body-util = "0.1.2"
hyper = "1.4.1"
rand_core = "0.6.4"
rubedo-macros = { path = "../rubedo-macros", version = "0.5.4" }
rubedo-macros = { path = "../rubedo-macros", version = "0.6.0" }
rust_decimal = "1.36.0"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = { version = "1.0.128", features = ["preserve_order"] }
Expand Down

0 comments on commit 2517c66

Please sign in to comment.