Skip to content

Commit

Permalink
Merge pull request #45 from PicoJr/dev
Browse files Browse the repository at this point in the history
Prepare release 2.0.1
  • Loading branch information
PicoJr authored Nov 3, 2020
2 parents d4bdf03 + 5ade122 commit d9dc0ec
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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).

## [2.0.1](https://crates.io/crates/rtw/2.0.1) Nov 3, 2020

* Fix CLI output for Windows 10 cf [#43](https://github.com/PicoJr/rtw/pull/43) thanks [ythri](https://github.com/ythri)

## [2.0.0](https://crates.io/crates/rtw/2.0.0) Jul 30, 2020

* Stabilize multiple ongoing activities
Expand Down
2 changes: 1 addition & 1 deletion 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 = "rtw"
version = "2.0.0"
version = "2.0.1"
authors = ["PicoJr <picojr_dev@gmx.com>"]
edition = "2018"
repository = "https://github.com/PicoJr/rtw"
Expand Down
4 changes: 4 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ fn main() -> anyhow::Result<()> {
finished_activity_path,
));

#[cfg(windows)]
{
ansi_term::enable_ansi_support().unwrap_or(());
}
let action = run(&matches, &clock)?;
let mutation = dry_run_action(action, &service, &clock, &config)?;
if matches.is_present("dry-run") {
Expand Down

0 comments on commit d9dc0ec

Please sign in to comment.