Skip to content

Commit

Permalink
Release 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
danwilliams committed Oct 7, 2023
1 parent 80699f7 commit 3bf4b05
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,34 @@ The format is based on [Keep a Changelog][], and this project adheres to
[Semantic Versioning][].


## 0.3.4 (07 October 2023)

### Added

- Implemented `From<Json>` for `http::UnpackedResponseBody`

- Implemented custom `Serialize` and `Deserialize` implementations for
`http::UnpackedResponseBody`

- Added `http::ContentType` enum to specify `http:UnpackedResponseBody`
content type

- Added `content_type()`, `set_content_type()`, `is_binary()`, `is_text()`,
`to_base64()`, and `from_base64()` to `http::UnpackedResponseBody`

### Changed

- Updated `Debug`, `Display`, `Serialize`, and `Deserialize` implementations
for `http::UnpackedResponseBody` to be content-type aware.

- Updated `http::UnpackedResponseBody::new()` to accept any types that `From`
has been implemented for.

- Changed `http::UnpackedResponseBody` from tuple struct to standard struct

- Improved performance in `http::UnpackedResponseBody::from()`


## 0.3.3 (06 October 2023)

### Added
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.3.3"
version = "0.3.4"
edition = "2021"
license = "MIT"
authors = ["Dan Williams <[email protected]>"]
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.3.3"
version = "0.3.4"
description = "Proc macros for Rubedo"
categories = []
keywords = ["macro", "library", "utility"]
Expand Down
2 changes: 1 addition & 1 deletion crates/rubedo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rubedo"
version = "0.3.3"
version = "0.3.4"
description = "Library of useful functionality and extensions"
categories = []
keywords = ["library", "utility"]
Expand Down

0 comments on commit 3bf4b05

Please sign in to comment.