Skip to content

Commit dd35313

Browse files
authored
Bump release to 1.10.0 (#386)
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 parent 60c6f0a commit dd35313

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.10.0] - 2020-07-03
11+
1012
### Added
1113

1214
- 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
2426
- Make after-edit-check ensure that edited time stamps are not in the future
2527
(#381)
2628

27-
2829
## [1.9.0] - 2020-05-27
2930

3031
### Added
@@ -249,7 +250,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
249250

250251
First stable public release 🎉
251252

252-
[unreleased]: https://github.com/tailordev/watson/compare/1.9.0...HEAD
253+
[unreleased]: https://github.com/tailordev/watson/compare/1.10.0...HEAD
254+
[1.10.0]: https://github.com/tailordev/watson/compare/1.9.0...1.10.0
253255
[1.9.0]: https://github.com/tailordev/watson/compare/1.8.0...1.9.0
254256
[1.8.0]: https://github.com/tailordev/watson/compare/1.7.0...1.8.0
255257
[1.7.0]: https://github.com/tailordev/watson/compare/1.6.0...1.7.0

docs/about/release-notes.md

+19
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.10.0] - 2020-07-03
9+
10+
### Added
11+
12+
- Log output order can now be controlled via the `--reverse/--no-reverse` flag
13+
and the `reverse_log` configuration option (#369)
14+
- Add `--at` flag to the `start` and `restart` commands (#364).
15+
- Add `--color` and `--no-color` flags to force output to be colored or not
16+
respectively (#350).
17+
18+
### Changed
19+
20+
- Require latest Arrow version 0.15.6 to support ISO week dates (#380)
21+
22+
### Fixed
23+
24+
- Make after-edit-check ensure that edited time stamps are not in the future
25+
(#381)
26+
827
## [1.9.0] - 2020-05-27
928

1029
### Added

watson/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# -*- coding: utf-8 -*-
22

3-
version = "1.9.0"
3+
version = "1.10.0"

0 commit comments

Comments
 (0)