Skip to content

Commit 924671d

Browse files
authored
Merge pull request #206 from yukinarit/bump-to-0.7.1
Bump to 0.7.1
2 parents 08d184c + f182c4e commit 924671d

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Tests
22

3-
on: [push, pull_request]
3+
on: [pull_request]
44

55
jobs:
66

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## `0.7.1` (2022-03-17)
2+
3+
* ci: Run tests on pull_request only ([015cb41](https://github.com/yukinarit/pyserde/commit/015cb41))
4+
* feat: Support typing.Generic ([e9f2bdb](https://github.com/yukinarit/pyserde/commit/e9f2bdb))
5+
* build: Drop python 3.6 and pypy ([279f1a4](https://github.com/yukinarit/pyserde/commit/279f1a4))
6+
* docs: Fix typo in docs introduction ([03f24da](https://github.com/yukinarit/pyserde/commit/03f24da))
7+
8+
This release had contributions from 1 person: [@chagui](https://github.com/chagui). Thank you so much! :tada: :joy:
9+
110
## `0.7.0` (2022-02-14)
211

312
* fix: Optional in custom class deserializer ([181b2f1](https://github.com/yukinarit/pyserde/commit/181b2f1))
@@ -6,7 +15,7 @@
615
* core: using black formatting only if debug is enabled ([e596a84](https://github.com/yukinarit/pyserde/commit/e596a84))
716
* feat: Add _make_serialize and _make_deserialize ([a71c5d5](https://github.com/yukinarit/pyserde/commit/a71c5d5))
817
* feat: Implement Union tagging system ([c884dc4](https://github.com/yukinarit/pyserde/commit/c884dc4))
9-
* This will change the default tagging for dataclasses with Union from `Untagged` to `ExternalTagging`. **This may break the existing code**, so please be aware if you use dataclasses with Union. For more information, check [the documentation](docs/features/union.md)
18+
* This will change the default tagging for dataclasses with Union from `Untagged` to `ExternalTagging`. **This may break the existing code**, so please be aware if you use dataclasses with Union. For more information, check [the documentation](docs/features/union.md)
1019
* build: Update mypy to workaround typed_ast error ([0ea33a7](https://github.com/yukinarit/pyserde/commit/0ea33a7))
1120

1221
This release had contributions from 1 person: [@tardyp](https://github.com/tardyp). Thank you so much! :tada: :joy:

pyproject.toml

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

0 commit comments

Comments
 (0)