summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Maupetit <jmaupetit@users.noreply.github.com>2020-07-03 12:13:01 +0200
committerGitHub <noreply@github.com>2020-07-03 12:13:01 +0200
commitdd353139b1e518b4af7e12cbe1fc3b5945a8a883 (patch)
tree3ad1ed505a369e452c6639966c5bdfbbe03baf03
parent60c6f0a083007dbf8803391f047b6d05d21a6ec9 (diff)
Bump release to 1.10.0 (#386)1.10.0
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)
-rw-r--r--CHANGELOG.md6
-rw-r--r--docs/about/release-notes.md19
-rw-r--r--watson/version.py2
3 files changed, 24 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a73da1a..cdca955 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 925834a..11cb365 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 f624bd4..7ff6a99 100644
--- a/watson/version.py
+++ b/watson/version.py
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
-version = "1.9.0"
+version = "1.10.0"