Skip to content

Commit

Permalink
Bump release to 1.10.0 (#386)
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
jmaupetit authored Jul 3, 2020
1 parent 60c6f0a commit dd35313
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
19 changes: 19 additions & 0 deletions docs/about/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion watson/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

version = "1.9.0"
version = "1.10.0"

0 comments on commit dd35313

Please sign in to comment.