Skip to content

Commit

Permalink
bump version, update readme, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
aogier committed Dec 13, 2020
1 parent 7b3e94e commit a85936c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 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.2.0] - 2020-12-13

### Added

- Allow specifying the version string directly - https://github.com/aogier/chachacha/issues/24

## [0.1.6] - 2020-12-13

### Changed
Expand Down Expand Up @@ -62,7 +68,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.6...HEAD
[Unreleased]: https://github.com/aogier/chachacha/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/aogier/chachacha/compare/v0.1.6...v0.2.0
[0.1.6]: https://github.com/aogier/chachacha/compare/v0.1.5...v0.1.6
[0.1.5]: https://github.com/aogier/chachacha/compare/v0.1.4...v0.1.5
[0.1.4]: https://github.com/aogier/chachacha/compare/v0.1.3...v0.1.4
Expand Down
18 changes: 6 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,23 +66,17 @@ Releasing a version is simple as:
```shell
chachacha release --help

Usage: chachacha release [OPTIONS]
Usage: main.py release [OPTIONS] [SPEC]

release a version
Update the changelog to release version SPEC.

SPEC should either be the version number to release or the strings
"major", "minor" or "patch".

Options:
--major bump a major version
--minor bump a minor version
--patch bump a patch version
--help Show this message and exit.
--help Show this message and exit.
```

Where:

* major: release a major
* minor: release a minor
* patch: release a patch

Specification follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
thanks to python [semver library](https://python-semver.readthedocs.io/en/latest/).

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.6"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "chachacha"
description = "Chachacha changes changelogs"
version = "0.1.6"
version = "0.2.0"
authors = ["Alessandro Ogier <[email protected]>"]
readme = "README.md"
license = "BSD"
Expand Down

0 comments on commit a85936c

Please sign in to comment.