From abe166612e81431b8c1c513804910f105d05deb9 Mon Sep 17 00:00:00 2001 From: Matt Briggs Date: Thu, 25 Feb 2021 10:49:49 -0800 Subject: [PATCH] release v0.3.0 --- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ff7aa6..b4fb9c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ 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.3.0] - 2021-02-25 +### Breaking Changes +- Updated tokio to v1, this is a breaking change when using coldsnap as a library. [#39] + +### Changed +- Fix an issue with download filepaths [#40] + ## [0.2.0] - 2020-11-11 ### Changed - Added Cargo.toml features to switch between rusoto native-tls and rustls. [#18] @@ -12,7 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Everything! +[0.3.0]: https://github.com/awslabs/coldsnap/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/awslabs/coldsnap/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/awslabs/coldsnap/releases/tag/v0.1.0 [#18]: https://github.com/awslabs/coldsnap/pull/18 +[#39]: https://github.com/awslabs/coldsnap/pull/39 +[#40]: https://github.com/awslabs/coldsnap/pull/40 diff --git a/Cargo.lock b/Cargo.lock index 932493d..5f83c81 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -112,7 +112,7 @@ dependencies = [ [[package]] name = "coldsnap" -version = "0.2.0" +version = "0.3.0" dependencies = [ "argh", "base64", diff --git a/Cargo.toml b/Cargo.toml index a060f7f..0d4f89f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "coldsnap" -version = "0.2.0" +version = "0.3.0" description = "A library and command-line interface for uploading and downloading Amazon EBS snapshots" authors = ["Ben Cressey "] license = "Apache-2.0"