Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Feb 28, 2022
1 parent ad9f1e8 commit a0914e4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [0.5.1] - 2022-02-28

* Python 3.10 added to test matrix and trove classifiers to officially claim support.


## [0.5.0] - 2021-06-30

* Major updates to improve type hints and intellisense within editors.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "stockholm"
version = "0.5.0"
version = "0.5.1"
description = "Human friendly and flexible package for working with monetary amounts"
authors = ["Carl Oscar Aaro <[email protected]>"]
homepage = "https://github.com/kalaspuff/stockholm"
Expand Down
2 changes: 1 addition & 1 deletion stockholm/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version_info__ = (0, 5, 0)
__version_info__ = (0, 5, 1)
__version__ = "".join([".{}".format(str(n)) if type(n) is int else str(n) for n in __version_info__]).replace(
".", "", 1 if type(__version_info__[0]) is int else 0
)
Expand Down

0 comments on commit a0914e4

Please sign in to comment.