Skip to content

Commit

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


## 0.5.0 (10 March 2024)

### Added

- Extended the `std` module
- Added `ByteSized` trait
- Added `ByteSized::from_base64()`
- Added `ByteSized::from_bytes()`
- Added `ByteSized::from_hex()`
- Added `ByteSized.as_bytes()`
- Added `ByteSized.to_base64()`
- Added `ByteSized.to_bytes()`
- Added `ByteSized.to_hex()`
- Added `ByteSized.to_vec()`
- Added `ByteSizedFull` trait
- Added `ByteSizedMut` trait
- Added `ByteSizedMut.as_mut_bytes()`
- Added `ByteSizedMut.into_bytes()`
- Added `ByteSizedMut.into_vec()`
- Added `ForceFrom` trait
- Added `ForceFrom::force_from()`
- Added `crypto` module to provide formal handling of hashes and keys
- Added `Sha256Hash` struct
- Added `Sha512Hash` struct
- Added `SigningKeyExt` trait
- Added `SigningKey` wrapper type
- Added `SigningKey.generate()`
- Added `SigningKey.into_inner()`
- Added `SigningKey.verifying_key()`
- Added `VerifyingKeyExt` trait
- Added `VerifyingKey` wrapper type
- Added `VerifyingKey.into_inner()`

### Changed

- Updated lint configuration
- Updated crate dependencies


## 0.4.7 (07 March 2024)

### Changed
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.4.7"
version = "0.5.0"
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.4.7"
version = "0.5.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.4.7"
version = "0.5.0"
description = "Library of useful functionality and extensions"
categories = ["development-tools"]
keywords = ["library", "utility"]
Expand All @@ -26,7 +26,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.4.7" }
rubedo-macros = { path = "../rubedo-macros", version = "0.5.0" }
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 28d8bf6

Please sign in to comment.