Skip to content

Commit d52d7af

Browse files
authored
Merge pull request #283 from yukinarit/bump-to-0.9.5
chore: Bump version to 0.9.5
2 parents bc3234d + 3f3de51 commit d52d7af

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## `0.9.5` (2022-11-26)
2+
3+
`alias` field attribute was implemented.
4+
5+
```python
6+
@serde
7+
@dataclass
8+
class Foo:
9+
a: int = field(alias=["b", "c", "d"])
10+
```
11+
12+
* feat: Implement alias ([36cbc6e](https://github.com/yukinarit/pyserde/commit/36cbc6e))
13+
* test: Add InitVar and ClassVar examples ([f5171fa](https://github.com/yukinarit/pyserde/commit/f5171fa))
14+
* build: Add python 3.11 to pyproject.toml ([4ea7504](https://github.com/yukinarit/pyserde/commit/4ea7504))
15+
116
## `0.9.4` (2022-11-20)
217

318
Variable lengh tuple is supported.

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.9.4"
3+
version = "0.9.5"
44
description = "Yet another serialization library on top of dataclasses"
55
authors = ["yukinarit <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)