Skip to content

Commit 4343ecb

Browse files
committed
chore: Bump version to 0.3.1
1 parent 8adc113 commit 4343ecb

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.3.1 (2021-03-21)
2+
3+
* fix: Add type annotation to serde decorators ([f885a27](https://github.com/yukinarit/pyserde/commit/f885a27))
4+
5+
You can get the code completion from the class with `serialize` and `deserialize` decorators. I would recommend everyone to upgrade to v0.3.1.
6+
17
## 0.3.0 (2021-03-20)
28

39
* feat: Support PEP585 type hint annotation ([81d3f4f](https://github.com/yukinarit/pyserde/commit/81d3f4f))

serde/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from .se import asdict, astuple, is_serializable, serialize, to_dict, to_tuple # noqa
88

99
""" Version of pyserde. """
10-
__version__ = '0.3.0'
10+
__version__ = '0.3.1'
1111

1212
__all__ = [
1313
'serialize',

0 commit comments

Comments
 (0)