From 19ea49a2ae5022eca9febdb32cc7cfd33d386bdc Mon Sep 17 00:00:00 2001 From: Michael Freeborn Date: Sun, 12 Jun 2022 17:02:32 +0100 Subject: [PATCH] prepare v0.7.0 release --- CHANGELOG.md | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 10 +++++----- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f5f8091..e2e3e34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [v0.7.0] - 2022-xx-xx +## [v0.7.0] - 2022-06-12 ### Fixed - Fixed handling of time zones so that they are now implemented properly ([#41](https://github.com/mfreeborn/heliocron/issues/41)). diff --git a/Cargo.lock b/Cargo.lock index 4f4de09..cd2617d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -249,7 +249,7 @@ checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9" [[package]] name = "heliocron" -version = "0.6.1" +version = "0.7.0" dependencies = [ "assert_cmd", "chrono", diff --git a/Cargo.toml b/Cargo.toml index ff7a28c..07a8ea2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heliocron" -version = "0.6.1" +version = "0.7.0" authors = ["Michael Freeborn "] description = """ heliocron is a command line application written in Rust capable of delaying execution of other diff --git a/README.md b/README.md index 588f25e..0e349c7 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,9 @@ Here's a quick compatibility table to help choose the correct binary to download | Platform | Binary | | -------- | ------ | -| Raspberry Pi 0/1 | [heliocron-v0.6.1-arm-unknown-linux-gnueabihf.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.6.1/heliocron-v0.6.1-arm-unknown-linux-gnueabihf.tar.gz) | -| Raspberry Pi 2/3/4 | [heliocron-v0.6.1-armv7-unknown-linux-gnueabihf.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.6.1/heliocron-v0.6.1-armv7-unknown-linux-gnueabihf.tar.gz) | -| Linux with a 64bit CPU | [heliocron-v0.6.1-x86_64-unknown-linux-gnu.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.6.1/heliocron-v0.6.1-x86_64-unknown-linux-gnu.tar.gz) | +| Raspberry Pi 0/1 | [heliocron-v0.7.0-arm-unknown-linux-gnueabihf.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.7.0/heliocron-v0.7.0-arm-unknown-linux-gnueabihf.tar.gz) | +| Raspberry Pi 2/3/4 | [heliocron-v0.7.0-armv7-unknown-linux-gnueabihf.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.7.0/heliocron-v0.7.0-armv7-unknown-linux-gnueabihf.tar.gz) | +| Linux with a 64bit CPU | [heliocron-v0.7.0-x86_64-unknown-linux-gnu.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.7.0/heliocron-v0.7.0-x86_64-unknown-linux-gnu.tar.gz) | ### 2. Install with cargo @@ -43,7 +43,7 @@ $ cargo install heliocron . . $ heliocron --version -heliocron 0.6.1 +heliocron 0.7.0 ``` ### 3. Build from source @@ -53,7 +53,7 @@ $ git clone https://github.com/mfreeborn/heliocron $ cd heliocron $ cargo build --release $ ./target/release/heliocron --version -heliocron 0.6.1 +heliocron 0.7.0 ``` ## Usage Examples