Skip to content

Commit

Permalink
Release 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danwilliams committed Mar 11, 2024
1 parent b5cdd44 commit 6134645
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 6 deletions.
28 changes: 26 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,28 @@ The format is based on [Keep a Changelog][], and this project adheres to
[Semantic Versioning][].


## 0.5.1 (11 March 2024)

### Added

- Extended the `crypto` module
- Added `Hashed` trait
- Implemented `Hashed` for `Sha256Hash` and `Sha512Hash`
- Extended the `std` module
- Added `AsyncFileExt` trait
- Added `AsyncFile::hash()`
- Added `FileExt` trait
- Added `File::hash()`

### Fixed

- Fixed wrong links in README documentation

### Changed

- Improved README documentation


## 0.5.0 (10 March 2024)

### Added
Expand Down Expand Up @@ -47,6 +69,7 @@ The format is based on [Keep a Changelog][], and this project adheres to

### Changed

- Upgraded to [Chrono][] [0.4.35](https://github.com/chronotope/chrono/releases/tag/v0.4.35)
- Updated lint configuration
- Updated crate dependencies

Expand All @@ -55,8 +78,9 @@ The format is based on [Keep a Changelog][], and this project adheres to

### Changed

- Locked [Chrono][] dependency to 0.4.33 due to test-breaking changes in
version 0.4.34 and build-breaking changes in 0.4.35
- Locked [Chrono][] dependency to [0.4.33](https://github.com/chronotope/chrono/releases/tag/v0.4.33)
due to test-breaking changes in version [0.4.34](https://github.com/chronotope/chrono/releases/tag/v0.4.34)
and build-breaking changes in [0.4.35](https://github.com/chronotope/chrono/releases/tag/v0.4.35)


## 0.4.6 (15 February 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.0"
version = "0.5.1"
edition = "2021"
license = "MIT"
authors = ["Dan Williams <dan@dotfive.co.uk>"]
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.0"
version = "0.5.1"
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.0"
version = "0.5.1"
description = "Library of useful functionality and extensions"
categories = ["development-tools"]
keywords = ["library", "utility"]
Expand All @@ -27,7 +27,7 @@ http = "0.2.12"
http-body = "0.4.6"
hyper = "0.14.28"
rand_core = "0.6.4"
rubedo-macros = { path = "../rubedo-macros", version = "0.5.0" }
rubedo-macros = { path = "../rubedo-macros", version = "0.5.1" }
rust_decimal = "1.34.3"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = { version = "1.0.114", features = ["preserve_order"] }
Expand Down

0 comments on commit 6134645

Please sign in to comment.