summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Maupetit <julien@maupetit.net>2019-03-25 22:26:31 +0100
committerJulien Maupetit <jmaupetit@users.noreply.github.com>2019-03-25 22:45:51 +0100
commitec753352511863d84aa321f7d1ff0ccd6632aa85 (patch)
tree7c584f3fc6efd9300a14045808b8f8cfe9d57da3
parentf81ca7e483799fe9ee223ba7d97bee6a82988035 (diff)
Bump release to 1.7.01.7.0
Added: - New `add` command (#202) - Add lunar start time options to the `report` and `log` commands (#215) - Aggregate reports by day (#231) - Fish shell completion (#239) - Add support for first day of the week configuration in reports and logs (#240) - Python 3.7 support (#241) - Add `start --no-gap` and `stop --at` options (#254) Changed: - The `edit` command now checks data consistency (#203) - Current state saving is now improve when using Watson as a library (#214) - Prevent calling `get_start_time_for_period` multiple times (#219) Fixed: - Improved support for UTF-8 with Python 2 (#211) - Zsh completion for tags and projects with spaces in their names (#227) - Typos in commands output (#230, #235) - Project URL of the project in PyPI (#260) Removed: - Python 3.3 support (#210).
-rw-r--r--CHANGELOG.md26
-rw-r--r--docs/about/release-notes.md29
-rw-r--r--watson/version.py2
3 files changed, 52 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 33f0d28..3dc0f83 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,17 +7,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
-### Removed
-
-- Python 3.3 support (#210).
+## [1.7.0] - 2019-03-25
### Added
+- New `add` command (#202)
+- Add lunar start time options to the `report` and `log` commands (#215)
+- Aggregate reports by day (#231)
+- Fish shell completion (#239)
+- Add support for first day of the week configuration in reports and logs (#240)
- Python 3.7 support (#241)
+- Add `start --no-gap` and `stop --at` options (#254)
+
+### Changed
+
+- The `edit` command now checks data consistency (#203)
+- Current state saving is now improve when using Watson as a library (#214)
+- Prevent calling `get_start_time_for_period` multiple times (#219)
### Fixed
- Improved support for UTF-8 with Python 2 (#211)
+- Zsh completion for tags and projects with spaces in their names (#227)
+- Typos in commands output (#230, #235)
+- Project URL of the project in PyPI (#260)
+
+### Removed
+
+- Python 3.3 support (#210).
## [1.6.0] - 2018-04-23
@@ -174,7 +191,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.6.0...HEAD
+[unreleased]: https://github.com/tailordev/watson/compare/1.7.0...HEAD
+[1.7.0]: https://github.com/tailordev/watson/compare/1.6.0...1.7.0
[1.6.0]: https://github.com/tailordev/watson/compare/1.5.2...1.6.0
[1.5.2]: https://github.com/tailordev/watson/compare/1.5.1...1.5.2
[1.5.1]: https://github.com/tailordev/watson/compare/1.5.0...1.5.1
diff --git a/docs/about/release-notes.md b/docs/about/release-notes.md
index 8999e41..d09eaf8 100644
--- a/docs/about/release-notes.md
+++ b/docs/about/release-notes.md
@@ -5,6 +5,35 @@ 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.7.0] - 2019-03-25
+
+### Added
+
+- New `add` command (#202)
+- Add lunar start time options to the `report` and `log` commands (#215)
+- Aggregate reports by day (#231)
+- Fish shell completion (#239)
+- Add support for first day of the week configuration in reports and logs (#240)
+- Python 3.7 support (#241)
+- Add `start --no-gap` and `stop --at` options (#254)
+
+### Changed
+
+- The `edit` command now checks data consistency (#203)
+- Current state saving is now improve when using Watson as a library (#214)
+- Prevent calling `get_start_time_for_period` multiple times (#219)
+
+### Fixed
+
+- Improved support for UTF-8 with Python 2 (#211)
+- Zsh completion for tags and projects with spaces in their names (#227)
+- Typos in commands output (#230, #235)
+- Project URL of the project in PyPI (#260)
+
+### Removed
+
+- Python 3.3 support (#210).
+
## [1.6.0] - 2018-04-23
### Added
diff --git a/watson/version.py b/watson/version.py
index 1c88f22..c2c7258 100644
--- a/watson/version.py
+++ b/watson/version.py
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-
-version = "1.6.0"
+version = "1.7.0"