Skip to content

Commit

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

## [0.4.3] - 2020-09-28

* Fixes an issue that caused a monetary amount without currency to get a `"None"` string instead of an empty string as value to `currency_code` when creating a protobuf message using the `.as_protobuf()` method.


## [0.4.2] - 2020-06-29

* Added support for conversion to and from Protocol Buffers using the new `Money.from_protobuf` or `money.as_protobuf` functions. By default using the [`google.type.Money`](https://github.com/googleapis/googleapis/blob/master/google/type/money.proto) protobuf definition.
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, 2)
__version_info__ = (0, 4, 3)
__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 ad8ae42

Please sign in to comment.