Skip to content

Commit

Permalink
versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
aogier committed Feb 26, 2020
1 parent b23ec9f commit 11bd382
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion chachacha/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.3"
__version__ = "0.1.4"
1 change: 1 addition & 0 deletions chachacha/drivers/git_providers/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 11bd382

Please sign in to comment.