Skip to content

Commit

Permalink
prepare v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mfreeborn committed Aug 1, 2022
1 parent 8217ff9 commit b62b60d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ 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.8.0] - 2022-xx-xx
## [v0.8.1] - 2022-08-01
### Added
- add `--watch` and `--json` to an overall much enhanced `poll` subcommand.

## [v0.8.0] - 2022-07-31
### Added
- `poll` subcommand - when executed, will return whether it is day, night or twilight ([#54](https://github.com/mfreeborn/heliocron/issues/54)).

Expand All @@ -16,7 +20,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Switched from pseudo-decimal degrees (e.g. "5.1N") to actual decimal degrees (e.g. 5.1) for coordinates ([#56](https://github.com/mfreeborn/heliocron/issues/56)).
- Refactored Github Actions workflows

## [v0.8.0] - 2022-06-12
## [v0.8.1] - 2022-06-12
### Fixed
- Fixed handling of time zones so that they are now implemented properly ([#41](https://github.com/mfreeborn/heliocron/issues/41)).

Expand Down
6 changes: 3 additions & 3 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 = "heliocron"
version = "0.8.0"
version = "0.8.1"
authors = ["Michael Freeborn <[email protected]>"]
description = "A simple program for calculating sunrise, sunset and related times, which can be integrated with cron to trigger other programs to run when these events occur"
documentation = "https://github.com/mfreeborn/heliocron"
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.8.0-arm-unknown-linux-gnueabihf.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.8.0/heliocron-v0.8.0-arm-unknown-linux-gnueabihf.tar.gz) |
| Raspberry Pi 2/3/4 | [heliocron-v0.8.0-armv7-unknown-linux-gnueabihf.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.8.0/heliocron-v0.8.0-armv7-unknown-linux-gnueabihf.tar.gz) |
| Linux with a 64bit CPU | [heliocron-v0.8.0-x86_64-unknown-linux-gnu.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.8.0/heliocron-v0.8.0-x86_64-unknown-linux-gnu.tar.gz) |
| Raspberry Pi 0/1 | [heliocron-v0.8.1-arm-unknown-linux-gnueabihf.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.8.1/heliocron-v0.8.1-arm-unknown-linux-gnueabihf.tar.gz) |
| Raspberry Pi 2/3/4 | [heliocron-v0.8.1-armv7-unknown-linux-gnueabihf.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.8.1/heliocron-v0.8.1-armv7-unknown-linux-gnueabihf.tar.gz) |
| Linux with a 64bit CPU | [heliocron-v0.8.1-x86_64-unknown-linux-gnu.tar.gz](https://github.com/mfreeborn/heliocron/releases/download/v0.8.1/heliocron-v0.8.1-x86_64-unknown-linux-gnu.tar.gz) |

### 2. Install with cargo

Expand All @@ -43,7 +43,7 @@ $ cargo install heliocron
.
.
$ heliocron --version
heliocron 0.8.0
heliocron 0.8.1
```

### 3. Build from source
Expand All @@ -53,7 +53,7 @@ $ git clone https://github.com/mfreeborn/heliocron
$ cd heliocron
$ cargo build --release
$ ./target/release/heliocron --version
heliocron 0.8.0
heliocron 0.8.1
```

## Usage Examples
Expand Down

0 comments on commit b62b60d

Please sign in to comment.