Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for v0.4.1 release #188

Merged
merged 2 commits into from
Aug 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ 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.4.1] - 2022-08-12
### Changed
- Prevent integer overflows during offset calculations ([#186], thanks @okudajun!)
- Update dependencies

## [0.4.0] - 2022-07-26
### Changed
- Limited nix features ([#143], thanks @rtzoeller!)
Expand Down Expand Up @@ -45,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Everything!

[Unreleased]: https://github.com/awslabs/coldsnap/compare/v0.4.0...develop
[Unreleased]: https://github.com/awslabs/coldsnap/compare/v0.4.1...develop
[0.4.1]: https://github.com/awslabs/coldsnap/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/awslabs/coldsnap/compare/v0.3.3...v0.4.0
[0.3.3]: https://github.com/awslabs/coldsnap/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/awslabs/coldsnap/compare/v0.3.1...v0.3.2
Expand Down Expand Up @@ -113,4 +119,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#168]: https://github.com/awslabs/coldsnap/pull/168
[#171]: https://github.com/awslabs/coldsnap/pull/171
[#179]: https://github.com/awslabs/coldsnap/pull/179
[#186]: https://github.com/awslabs/coldsnap/pull/186

54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "coldsnap"
version = "0.4.0"
version = "0.4.1"
description = "A library and command-line interface for uploading and downloading Amazon EBS snapshots"
authors = ["Ben Cressey <bcressey@amazon.com>"]
license = "Apache-2.0"
Expand Down