From 5eb266f3632932a929b5b9f8babc0963c3b6c807 Mon Sep 17 00:00:00 2001 From: Michael Freeborn Date: Sat, 11 Jun 2022 21:39:07 +0100 Subject: [PATCH] bump tokio-walltime to v0.1.2 for crates.io --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 10 +++++----- 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45f6d82..b42ab48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,10 @@ 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.6.0] - 2022-06-06 +## [v0.6.1] - 2022-06-11 +Cut a new release specifically for [crates.io](https://crates.io/crates/heliocron) to bump `tokio-walltime` to v0.1.2. Previous versions of `tokio-walltime` failed to compile on the Raspberry Pi architectures. v0.6.0 of `heliocron` has been yanked from crates.io. + +## [v0.6.0] - 2022-06-11 ### Added - Add `--json` flag to `report` subcommand ([#44](https://github.com/mfreeborn/heliocron/issues/44)). - Add `--run-missed-task` flag to `wait` subcommand ([#48](https://github.com/mfreeborn/heliocron/pull/48)). diff --git a/Cargo.lock b/Cargo.lock index e252a66..73cafc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -206,7 +206,7 @@ dependencies = [ [[package]] name = "heliocron" -version = "0.6.0" +version = "0.6.1" dependencies = [ "assert_cmd", "chrono", diff --git a/Cargo.toml b/Cargo.toml index d7479b3..b8aacac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heliocron" -version = "0.6.0" +version = "0.6.1" 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 5c0da37..708d188 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.0-arm-unknown-linux-gnueabihf.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.6.0/heliocron-v0.6.0-arm-unknown-linux-gnueabihf.tar.gz) | -| Raspberry Pi 2/3/4 | [heliocron-v0.6.0-armv7-unknown-linux-gnueabihf.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.6.0/heliocron-v0.6.0-armv7-unknown-linux-gnueabihf.tar.gz) | -| Linux with a 64bit CPU | [heliocron-v0.6.0-x86_64-unknown-linux-gnu.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.6.0/heliocron-v0.6.0-x86_64-unknown-linux-gnu.tar.gz) | +| 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) | ### 2. Install with cargo @@ -43,7 +43,7 @@ $ cargo install heliocron . . $ heliocron --version -heliocron 0.6.0 +heliocron 0.6.1 ``` ### 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.0 +heliocron 0.6.1 ``` ## Usage Examples