diff --git a/CHANGELOG.md b/CHANGELOG.md index a73da1a3..cdca9553 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.10.0] - 2020-07-03 + ### Added - Log output order can now be controlled via the `--reverse/--no-reverse` flag @@ -24,7 +26,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Make after-edit-check ensure that edited time stamps are not in the future (#381) - ## [1.9.0] - 2020-05-27 ### Added @@ -249,7 +250,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 First stable public release 🎉 -[unreleased]: https://github.com/tailordev/watson/compare/1.9.0...HEAD +[unreleased]: https://github.com/tailordev/watson/compare/1.10.0...HEAD +[1.10.0]: https://github.com/tailordev/watson/compare/1.9.0...1.10.0 [1.9.0]: https://github.com/tailordev/watson/compare/1.8.0...1.9.0 [1.8.0]: https://github.com/tailordev/watson/compare/1.7.0...1.8.0 [1.7.0]: https://github.com/tailordev/watson/compare/1.6.0...1.7.0 diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md index 925834af..11cb3655 100644 --- a/docs/about/release-notes.md +++ b/docs/about/release-notes.md @@ -5,6 +5,25 @@ 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). +## [1.10.0] - 2020-07-03 + +### Added + +- Log output order can now be controlled via the `--reverse/--no-reverse` flag + and the `reverse_log` configuration option (#369) +- Add `--at` flag to the `start` and `restart` commands (#364). +- Add `--color` and `--no-color` flags to force output to be colored or not + respectively (#350). + +### Changed + +- Require latest Arrow version 0.15.6 to support ISO week dates (#380) + +### Fixed + +- Make after-edit-check ensure that edited time stamps are not in the future + (#381) + ## [1.9.0] - 2020-05-27 ### Added diff --git a/watson/version.py b/watson/version.py index f624bd43..7ff6a998 100644 --- a/watson/version.py +++ b/watson/version.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -version = "1.9.0" +version = "1.10.0"