Skip to content

Commit

Permalink
0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Jun 29, 2021
1 parent b9948d3 commit 3bcada5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.5.0] - 2021-06-30

* Major updates to improve type hints and intellisense within editors.
* Reworked the currency classes to utilize the metaclass in a better way.
* Additional updates to ease development working with Protocol Buffers and monetary amounts (mostly related to better type hint annotations which gives a better developer experience).
* Updates to the readme with additional examples.
* Dropped support for Python 3.6.


## [0.4.4] - 2020-11-09

* Python 3.9 supported.
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.4.4"
version = "0.5.0"
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, 4, 4)
__version_info__ = (0, 5, 0)
__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 3bcada5

Please sign in to comment.