Skip to content

Commit

Permalink
Fix; add packaging dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mdwint committed Aug 1, 2022
1 parent 6a6e8fd commit 2a37f40
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ 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.1 - 2022-08-01

### Fixed

- Add `packaging` dependency.


## 0.2.0 - 2022-08-01

### Added
Expand Down
2 changes: 1 addition & 1 deletion ocdc/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.2.1"
6 changes: 3 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ocdc"
version = "0.2.0"
version = "0.2.1"
description = 'A changelog formatter for "people", neat freaks, and sloppy typists.'
authors = ["Matteo De Wint <[email protected]>"]
packages = [{ include = "ocdc" }]
Expand All @@ -13,6 +13,7 @@ keywords = ["changelog", "markdown", "formatter"]
ocdc = "ocdc.__main__:main"

[tool.poetry.dependencies]
packaging = "^21.3"
pydantic = "^1.9.1"
python = "^3.7"

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.0
current_version = 0.2.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize =
{major}.{minor}.{patch}
Expand Down

0 comments on commit 2a37f40

Please sign in to comment.