diff --git a/CHANGELOG.md b/CHANGELOG.md index b69e211..ef9baa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## [0.1.4] - 2020-02-26 + +### Fixed + +- Versioning. + ## [0.1.3] - 2020-02-26 ### Added @@ -38,7 +44,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - tests - a changelog :D -[Unreleased]: https://github.com/aogier/chachacha/compare/v0.1.3...HEAD +[Unreleased]: https://github.com/aogier/chachacha/compare/v0.1.4...HEAD +[0.1.4]: https://github.com/aogier/chachacha/compare/v0.1.3...v0.1.4 [0.1.3]: https://github.com/aogier/chachacha/compare/v0.1.2...v0.1.3 [0.1.2]: https://github.com/aogier/chachacha/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/aogier/chachacha/compare/v0.1.0...v0.1.1 diff --git a/chachacha/__init__.py b/chachacha/__init__.py index ae73625..bbab024 100644 --- a/chachacha/__init__.py +++ b/chachacha/__init__.py @@ -1 +1 @@ -__version__ = "0.1.3" +__version__ = "0.1.4" diff --git a/chachacha/drivers/git_providers/github.py b/chachacha/drivers/git_providers/github.py index 67faf46..dc51a55 100644 --- a/chachacha/drivers/git_providers/github.py +++ b/chachacha/drivers/git_providers/github.py @@ -24,6 +24,7 @@ def __init__(self, changelog, config): def compare(self): last = "HEAD" + self.changelog.pop("Unreleased", None) for release in self.changelog: yield last if last != "HEAD" else "Unreleased", self.compare_template.format( repo_name=self.config.repo_name,