Skip to content

Commit

Permalink
release: v0.3.1
Browse files Browse the repository at this point in the history
This release includes an updated ferrunix-macros.
  • Loading branch information
Leandros committed Nov 5, 2024
1 parent a27bb9d commit 3c9412d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ of the changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.
Deprecated features will be kept for any following maintenance release, and
will be removed after two major releases.

## [0.3.1] - 2024-11-05

### <!-- 1 -->🐛 Bug Fixes
- Publish `ferrunix` v0.3.1 which depends on an updated `ferrunix-macros`

## [0.3.0] - 2024-11-05

MSRV is bumped from `1.64.0` to `1.67.1`. MSRV with `tokio` enabled is `1.75.0`.
Expand Down
2 changes: 1 addition & 1 deletion doc-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license.workspace = true
workspace = true

[dependencies]
ferrunix = { path = "../ferrunix", version = "=0.3.0" }
ferrunix = { path = "../ferrunix", version = "=0.3.1" }

[dev-dependencies]
skeptic = { git = "https://github.com/Leandros/rust-skeptic.git", rev = "45d69d27c3ee1f0cf66072053bb6f88c1be0e07b" }
Expand Down
2 changes: 1 addition & 1 deletion ferrunix-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ferrunix-core"
version = "0.3.0"
version = "0.3.1"
description = "Core types, traits, and implementations for ferrunix"
readme = "README.md"
# Inherited.
Expand Down
2 changes: 1 addition & 1 deletion ferrunix-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ferrunix-macros"
version = "0.3.0"
version = "0.3.1"
description = "Proc-macro for ferrunix"
readme = "README.md"
# Inherited.
Expand Down
6 changes: 3 additions & 3 deletions ferrunix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ferrunix"
version = "0.3.0"
version = "0.3.1"
description = "A lightweight run-time dependency injection framework for Rust"
readme = "README.md"
# Inherited.
Expand All @@ -24,8 +24,8 @@ tokio = ["ferrunix-core/tokio", "ferrunix-macros?/tokio"]
tracing = ["ferrunix-core/tracing"]

[dependencies]
ferrunix-core = { path = "../ferrunix-core", default-features = false, version = "=0.3.0" }
ferrunix-macros = { path = "../ferrunix-macros", optional = true, version = "=0.3.0" }
ferrunix-core = { path = "../ferrunix-core", default-features = false, version = "=0.3.1" }
ferrunix-macros = { path = "../ferrunix-macros", optional = true, version = "=0.3.1" }

[dev-dependencies]
thiserror = "1"
Expand Down

0 comments on commit 3c9412d

Please sign in to comment.