diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b3776c4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ + +# Changelog + +## 0.2.0 + +* Bump `serde_with` version. +* CBOR tags support: can add and verify tags on COSESign1. +* Use PKey instead of EcKey. Just an interface change, RSA not supported yet. (thanks @puiterwijk) +This will likely change again in the future to support https://github.com/awslabs/aws-nitro-enclaves-cose/issues/5. +* Implement std::error::Error for COSEError (thanks @puiterwijk) + +## 0.1.0 + +Initial Release diff --git a/Cargo.toml b/Cargo.toml index 20dbd99..50bfe29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aws-nitro-enclaves-cose" -version = "0.1.0" +version = "0.2.0" authors = ["Petre Eftime "] edition = "2018" license = "Apache-2.0" diff --git a/README.md b/README.md index 03124b0..dd8425e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,12 @@ +[![status]][actions] [![version]][crates.io] [![docs]][docs.rs] + +[status]: https://img.shields.io/github/workflow/status/awslabs/aws-nitro-enclaves-cose/CI/master +[actions]: https://github.com/awslabs/aws-nitro-enclaves-cose/actions?query=branch%3Amain +[version]: https://img.shields.io/crates/v/aws-nitro-enclaves-cose.svg +[crates.io]: https://crates.io/crates/aws-nitro-enclaves-cose +[docs]: https://img.shields.io/docsrs/aws-nitro-enclaves-cose +[docs.rs]: https://docs.rs/aws-nitro-enclaves-cose + ## COSE for AWS Nitro Enclaves This library aims to provide a safe Rust implementation of COSE.