From ca317b7de2e5dbb87d80395cda1d73b52b022172 Mon Sep 17 00:00:00 2001 From: petreeftime Date: Wed, 24 Mar 2021 11:35:35 +0200 Subject: [PATCH] update to version 0.2.0 (#15) Signed-off-by: Petre Eftime --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- README.md | 9 +++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md 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.