diff --git a/CHANGELOG.md b/CHANGELOG.md index eab0423c..20a5a588 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) @@ -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 diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md index edda12a7..bb2b59c1 100644 --- a/docs/about/release-notes.md +++ b/docs/about/release-notes.md @@ -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 @@ -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 diff --git a/watson/version.py b/watson/version.py index bd1378f4..1b236407 100644 --- a/watson/version.py +++ b/watson/version.py @@ -1 +1 @@ -version = "1.10.0" +version = "2.0.0"