diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d562d6..8f4e54d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Unreleased -## 0.1.0 -* Initial implementation mirroring the JSON extractor in Actix-Web # Released +## 0.1.1 - 2020-09-28 +* Several fields were accidentally left private that should have been public in the initial release. + +## 0.1.0 - 2020-09-28 +* Initial implementation mirroring the JSON extractor in Actix-Web \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index 2518e7b..14897ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-cbor" -version = "0.1.0" +version = "0.1.1" authors = ["noah "] edition = "2018" description = "CBOR support for Actix-Web" diff --git a/src/lib.rs b/src/lib.rs index ba78fc8..e58872b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -27,7 +27,7 @@ mod body; #[cfg(test)] mod tests; -pub struct Cbor(T); +pub struct Cbor(pub T); impl Cbor { /// Deconstruct to an inner value