From 6f3d498aeadf780a4d5504fba73151171bbe8df9 Mon Sep 17 00:00:00 2001 From: Maxime Brunet Date: Sun, 15 Sep 2019 16:43:12 -0400 Subject: [PATCH] Release v0.2.0 --- CHANGELOG.md | 22 ++++++++++++++++++++-- src/mmemoji/version.py | 2 +- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22c80d57..5f30144d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## 0.1.0 - 2019-01-08 +## [0.2.0] - 2019-09-15 ### Added +- Add `list` command ([#5]) +- Add `search` command ([#5]) +- documentation: Add deletion to examples ([#2]) +### Changed +- Drop support for Python 3.4 which [has reached end-of-line](https://www.python.org/downloads/release/python-3410/) ([#6]) +- Several bug fixes and enhancements to the test suite ([#1], [#3], [#4], [#6]) + +## [0.1.0] - 2019-01-08 +### Added - Initial release -[Unreleased]: https://github.com/maxbrunet/mmemoji/compare/v0.1.0...HEAD +[Unreleased]: https://github.com/maxbrunet/mmemoji/compare/v0.2.0...HEAD +[0.2.0]: https://github.com/maxbrunet/mmemoji/compare/v0.1.0...v0.2.0 +[0.1.0]: https://github.com/maxbrunet/mmemoji/releases/tag/v0.1.0 + +[#6]: https://github.com/maxbrunet/mmemoji/issues/6 +[#5]: https://github.com/maxbrunet/mmemoji/issues/5 +[#4]: https://github.com/maxbrunet/mmemoji/issues/4 +[#3]: https://github.com/maxbrunet/mmemoji/issues/3 +[#2]: https://github.com/maxbrunet/mmemoji/issues/2 +[#1]: https://github.com/maxbrunet/mmemoji/issues/1 diff --git a/src/mmemoji/version.py b/src/mmemoji/version.py index 94a862f9..29fd65e6 100644 --- a/src/mmemoji/version.py +++ b/src/mmemoji/version.py @@ -1,2 +1,2 @@ -VERSION = "0.1.0" +VERSION = "0.2.0" DESCRIPTION = "Custom Emoji manager command-line for Mattermost 😎"