Skip to content

Commit 322805f

Browse files
authored
Merge pull request #320 from yukinarit/0.10.0
s/0.9.10/0.10.0/
2 parents aa49eb5 + 44040be commit 322805f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/features/decorators.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class Foo:
6262
6363
## `@dataclass` without `@serde`
6464

65-
pyserde can (de)serialize dataclasses without `@serde` since v0.9.9. This feature is convenient when you want to use classes declared in external libraries or a type checker doesn't work with `@serde` decorator. See [this example](https://github.com/yukinarit/pyserde/blob/main/examples/plain_dataclass.py).
65+
pyserde can (de)serialize dataclasses without `@serde` since v0.10.0. This feature is convenient when you want to use classes declared in external libraries or a type checker doesn't work with `@serde` decorator. See [this example](https://github.com/yukinarit/pyserde/blob/main/examples/plain_dataclass.py).
6666

6767
```python
6868
@dataclass
@@ -83,4 +83,4 @@ class External:
8383
@dataclass
8484
class Wrapper(External):
8585
pass
86-
```
86+
```

examples/plain_dataclass.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from serde.json import from_json, to_json
44

55

6-
# Works without @serde since v0.9.9
6+
# Works without @serde since v0.10.0
77
@dataclass
88
class Foo:
99
i: int

0 commit comments

Comments
 (0)