Skip to content

Commit

Permalink
Bump release to 2.0.0
Browse files Browse the repository at this point in the history
Added:

- The `log` command output can now be filtered to exclude projects and
  tags via `--ignore-project` and `--ignore-tag` (#395)
- Python 3.8 support (#402)
- Python 3.9 support (#402)
- Support for the TZ environment variable to specify the local time zone
  (#391)

Changed:

- Upgrade to major arrow release 1.0.0 (#407)

Fixed:

- Zsh completion (#379)

Removed:

- Python 2.7 support (#305).
- Python 3.5 support (#407).
  • Loading branch information
jmaupetit committed Mar 19, 2021
1 parent 06bdbc8 commit edf30f8
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.0.0] - 2020-03-19

### Added

- The `log` command output can now be filtered to exclude projects and tags via `--ignore-project` and `--ignore-tag` (#395)
- The `log` command output can now be filtered to exclude projects and tags via
`--ignore-project` and `--ignore-tag` (#395)
- Python 3.8 support (#402)
- Python 3.9 support (#402)
- Support for the TZ environment variable to specify the local time zone (#391)
Expand Down Expand Up @@ -270,7 +273,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.10.0...HEAD
[unreleased]: https://github.com/tailordev/watson/compare/2.0.0...HEAD
[2.0.0]: https://github.com/tailordev/watson/compare/1.10.0...2.0.0
[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
Expand Down
24 changes: 24 additions & 0 deletions docs/about/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,29 @@ 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.0] - 2020-03-19

### Added

- The `log` command output can now be filtered to exclude projects and tags via
`--ignore-project` and `--ignore-tag` (#395)
- Python 3.8 support (#402)
- Python 3.9 support (#402)
- Support for the TZ environment variable to specify the local time zone (#391)

### Changed

- Upgrade to major arrow release 1.0.0 (#407)

### Fixed

- Zsh completion (#379)

### Removed

- Python 2.7 support (#305).
- Python 3.5 support (#407).

## [1.10.0] - 2020-07-03

### Added
Expand Down Expand Up @@ -247,6 +270,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

First stable public release 🎉

[2.0.0]: https://github.com/tailordev/watson/compare/1.10.0...2.0.0
[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
Expand Down
2 changes: 1 addition & 1 deletion watson/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.10.0"
version = "2.0.0"

0 comments on commit edf30f8

Please sign in to comment.