From bbdd9b25516090009776400f5cb2296918ba8883 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 6 Dec 2023 17:44:30 +0000 Subject: [PATCH 1/2] Add changelog file --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d263b52 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,10 @@ +# Changelog +All notable changes to this library will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this library adheres to Rust's notion of +[Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +Initial release. From 5c9a5de504d3e27018513fef153a61afe5a1944b Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 6 Dec 2023 17:45:07 +0000 Subject: [PATCH 2/2] v0.1.0 --- CHANGELOG.md | 1 + Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d263b52..66beb47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,4 +7,5 @@ and this library adheres to Rust's notion of ## [Unreleased] +## [0.1.0] - 2023-12-06 Initial release. diff --git a/Cargo.lock b/Cargo.lock index daaa55e..bd5aa1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -51,7 +51,7 @@ checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" [[package]] name = "zip32" -version = "0.0.0" +version = "0.1.0" dependencies = [ "assert_matches", "blake2b_simd", diff --git a/Cargo.toml b/Cargo.toml index e4cc027..03e2b50 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zip32" -version = "0.0.0" +version = "0.1.0" authors = [ "Jack Grigg ", "Kris Nuttycombe ",