From c06b1ece520054415b4ad06c84cc0fda0f221ff5 Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sun, 6 Oct 2019 17:41:31 -0700 Subject: [PATCH] xsalsa20poly1305 v0.2.0 --- xsalsa20poly1305/CHANGELOG.md | 10 ++++++++++ xsalsa20poly1305/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/xsalsa20poly1305/CHANGELOG.md b/xsalsa20poly1305/CHANGELOG.md index 3ec8b64d..83fee938 100644 --- a/xsalsa20poly1305/CHANGELOG.md +++ b/xsalsa20poly1305/CHANGELOG.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.2.0 (2019-10-06) +### Added +- Expose "detached" in-place encryption/decryption APIs ([#21]) + +### Changed +- Upgrade to `poly1305` crate v0.5 ([#20]) + +[#21]: https://github.com/RustCrypto/AEADs/pull/21 +[#20]: https://github.com/RustCrypto/AEADs/pull/20 + ## 0.1.0 (2019-10-01) - Initial release diff --git a/xsalsa20poly1305/Cargo.toml b/xsalsa20poly1305/Cargo.toml index 4e53de48..ad260f9d 100644 --- a/xsalsa20poly1305/Cargo.toml +++ b/xsalsa20poly1305/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xsalsa20poly1305" -version = "0.1.0" +version = "0.2.0" authors = ["RustCrypto Developers"] edition = "2018" license = "MIT OR Apache-2.0"