diff --git a/CHANGELOG.md b/CHANGELOG.md index 85c1d738..7807c7e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## `0.5.2` (2021-10-21) + +* feat: (de)serialize non dataclass types correctly ([0ffb9ea](https://github.com/yukinarit/pyserde/commit/0ffb9ea)) +* refactor: Fix minor type error ([bef0c4f](https://github.com/yukinarit/pyserde/commit/bef0c4f)) +* refactor: Remove unused imports ([cc16d58](https://github.com/yukinarit/pyserde/commit/cc16d58)) +* refactor: Use backports-datetime-fromisoformat for python 3.6 ([014296f](https://github.com/yukinarit/pyserde/commit/014296f)) +* build: Remove unused dependency for examples ([3a5ca01](https://github.com/yukinarit/pyserde/commit/3a5ca01)) + ## `0.5.1` (2021-10-10) * feat: deserialize to the type more correctly ([a4c155c](https://github.com/yukinarit/pyserde/commit/a4c155c)) diff --git a/pyproject.toml b/pyproject.toml index 2a92c646..2a457f78 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyserde" -version = "0.5.1" +version = "0.5.2" description = "Yet another serialization library on top of dataclasses" authors = ["yukinarit "] license = "MIT"