Skip to content

Commit b62e751

Browse files
authored
Merge pull request #155 from yukinarit/bump-to-0.5.0
chore: Bump version to 0.5.0
2 parents e2b959e + ed4cbf2 commit b62e751

File tree

2 files changed

+38
-6
lines changed

2 files changed

+38
-6
lines changed

CHANGELOG.md

+37-5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
## `0.5.0` (2021-09-30)
2+
3+
* New documentation is available!
4+
* [Guide](https://yukinarit.github.io/pyserde/guide/)
5+
* [API Docs](https://yukinarit.github.io/pyserde/api/serde.html)
6+
* feat: Implement flatten ([a7bb6f0](https://github.com/yukinarit/pyserde/commit/a7bb6f0))
7+
8+
```python
9+
@deserialize
10+
@serialize
11+
@dataclass
12+
class Bar:
13+
c: float
14+
d: bool
15+
16+
@deserialize
17+
@serialize
18+
@dataclass
19+
class Foo:
20+
a: int
21+
b: str
22+
bar: Bar = field(metadata={'serde_flatten': True})
23+
```
24+
25+
* feat: Print Tips in serde.inspect ([62c74f3](https://github.com/yukinarit/pyserde/commit/62c74f3))
26+
* fix: "Cannot instantiate type" type error ([6b3afbd](https://github.com/yukinarit/pyserde/commit/6b3afbd))
27+
* ci: Use [email protected] ([45a999c](https://github.com/yukinarit/pyserde/commit/45a999c))
28+
* build: Parallel test execution ([#148](https://github.com/yukinarit/pyserde/pull/148))
29+
* build: Migrate to poetry ([#144](https://github.com/yukinarit/pyserde/pull/144))
30+
31+
This release had contributions from 1 person: [@alexmisk](https://github.com/alexmisk). Thank you so much! :tada: :joy:
32+
133
## `0.4.0` (2021-06-17)
234

335
* feat: add support for lazy annotations PEP563 (#112) ([f7f6996](https://github.com/yukinarit/pyserde/commit/f7f6996)), closes [#112](https://github.com/yukinarit/pyserde/issues/112)
@@ -61,7 +93,7 @@ class Foo:
6193
* fix: pass convert_sets argument to union functions ([ab40cc9](https://github.com/yukinarit/pyserde/commit/ab40cc9))
6294
* fix: support unions with nested unions in containers (#113) ([c26e828](https://github.com/yukinarit/pyserde/commit/c26e828)), closes [#113](https://github.com/yukinarit/pyserde/issues/113)
6395

64-
This release had contibutions from 1 person: [@ydylla](https://github.com/ydylla). Thank you so much! :tada: :joy:
96+
This release had contributions from 1 person: [@ydylla](https://github.com/ydylla). Thank you so much! :tada: :joy:
6597

6698
## `0.3.2` (2021-05-07)
6799

@@ -76,7 +108,7 @@ This release had contibutions from 1 person: [@ydylla](https://github.com/ydylla
76108
* ci: Don't cache pip to workaround pip error ([c912429](https://github.com/yukinarit/pyserde/commit/c912429))
77109
* refactor: Remove self class from scope ([da81f1f](https://github.com/yukinarit/pyserde/commit/da81f1f))
78110

79-
This release had contibutions from 1 person: [@ydylla](https://github.com/ydylla). Thank you so much! :tada: :joy:
111+
This release had contributions from 1 person: [@ydylla](https://github.com/ydylla). Thank you so much! :tada: :joy:
80112

81113
## `0.3.1` (2021-03-21)
82114

@@ -122,7 +154,7 @@ You can get the code completion from the class with `serialize` and `deserialize
122154
* build: setup pre-commit as formatting tool ([2876de4](https://github.com/yukinarit/pyserde/commit/2876de4))
123155
* ci: add code style check ([c52f7e9](https://github.com/yukinarit/pyserde/commit/c52f7e9))
124156

125-
This release had contibutions from 2 people: [@ydylla](https://github.com/ydylla), [@alexmisk](https://github.com/alexmisk). Thank you so much! :tada: :joy:
157+
This release had contributions from 2 people: [@ydylla](https://github.com/ydylla), [@alexmisk](https://github.com/alexmisk). Thank you so much! :tada: :joy:
126158

127159
## `0.2.2` (2021-01-19)
128160

@@ -142,7 +174,7 @@ This release had contibutions from 1 person: [@adsharma](https://github.com/adsh
142174
* Rename testing step for better readability
143175
* Change Python 3.9-dev to 3.9 in test matrix
144176

145-
This release had contibutions from 2 people: [@alexmisk](https://github.com/alexmisk), [@pranavvp10](https://github.com/pranavvp10). Thank you so much! :turkey: :joy:
177+
This release had contributions from 2 people: [@alexmisk](https://github.com/alexmisk), [@pranavvp10](https://github.com/pranavvp10). Thank you so much! :turkey: :joy:
146178

147179
## `0.2.0` (2020-10-31)
148180

@@ -153,7 +185,7 @@ Please note this release has a breaking change, where `pip install pyserde` no l
153185
* Migrate from Travis to Github Action ([#45](https://github.com/yukinarit/pyserde/pull/45))
154186
* Make data format dependencies optional ([4a130ab](https://github.com/yukinarit/pyserde/commit/4a130ab))
155187

156-
This release had contibutions from 2 people: [@alexmisk](https://github.com/alexmisk), [@andreymal](https://github.com/andreymal). Thank you so much! :tada: :joy:
188+
This release had contributions from 2 people: [@alexmisk](https://github.com/alexmisk), [@andreymal](https://github.com/andreymal). Thank you so much! :tada: :joy:
157189

158190
## `0.1.5` (2020-10-05)
159191

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyserde"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "Yet another serialization library on top of dataclasses"
55
authors = ["yukinarit <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)