Skip to content

Commit f6a36ba

Browse files
authored
Merge pull request yukinarit#125 from yukinarit/bump-to-0.3.2
chore: Bump version to 0.3.2
2 parents cab048a + b3beb1d commit f6a36ba

File tree

2 files changed

+26
-11
lines changed

2 files changed

+26
-11
lines changed

CHANGELOG.md

+25-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
1-
## 0.3.1 (2021-03-21)
1+
## `0.3.2` (2021-05-07)
2+
3+
* feat: Improve error description for union type ([8abb549](https://github.com/yukinarit/pyserde/commit/8abb549))
4+
* feat: Improve serde.inspect ([8b8635a](https://github.com/yukinarit/pyserde/commit/8b8635a))
5+
* feat: Support typing.any ([988a621](https://github.com/yukinarit/pyserde/commit/988a621))
6+
* feat: Support typing.NewType for primitives ([731ed79](https://github.com/yukinarit/pyserde/commit/731ed79))
7+
* build: add pre-commit to test requirements ([a88ea40](https://github.com/yukinarit/pyserde/commit/a88ea40))
8+
* fix: correctly render single element tuples ([a8a6456](https://github.com/yukinarit/pyserde/commit/a8a6456))
9+
* fix: pass convert_sets argument to union functions ([ab40cc9](https://github.com/yukinarit/pyserde/commit/ab40cc9))
10+
* 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)
11+
* ci: Don't cache pip to workaround pip error ([c912429](https://github.com/yukinarit/pyserde/commit/c912429))
12+
* refactor: Remove self class from scope ([da81f1f](https://github.com/yukinarit/pyserde/commit/da81f1f))
13+
14+
This release had contibutions from 1 person: [@ydylla](https://github.com/ydylla). Thank you so much! :tada: :joy:
15+
16+
## `0.3.1` (2021-03-21)
217

318
* fix: Add type annotation to serde decorators ([f885a27](https://github.com/yukinarit/pyserde/commit/f885a27))
419

520
You can get the code completion from the class with `serialize` and `deserialize` decorators. I would recommend everyone to upgrade to v0.3.1.
621

7-
## 0.3.0 (2021-03-20)
22+
## `0.3.0` (2021-03-20)
823

924
* feat: Support PEP585 type hint annotation ([81d3f4f](https://github.com/yukinarit/pyserde/commit/81d3f4f))
1025
```python
@@ -44,14 +59,14 @@ You can get the code completion from the class with `serialize` and `deserialize
4459

4560
This release had contibutions from 2 people: [@ydylla](https://github.com/ydylla), [@alexmisk](https://github.com/alexmisk). Thank you so much! :tada: :joy:
4661

47-
## 0.2.2 (2021-01-19)
62+
## `0.2.2` (2021-01-19)
4863

4964
* Support inference of types on deserialization ([8c4efb2](https://github.com/yukinarit/pyserde/commit/8c4efb2))
5065
* Fix pytest error ([09ee66a](https://github.com/yukinarit/pyserde/commit/09ee66a))
5166

5267
This release had contibutions from 1 person: [@adsharma](https://github.com/adsharma). Thank you so much! :tada: :joy:
5368

54-
## 0.2.1 (2020-11-29)
69+
## `0.2.1` (2020-11-29)
5570

5671
* feat: Allow enum compatible value for enum field ([14006ee](https://github.com/yukinarit/pyserde/commit/14006ee))
5772
* fix: Support optional extended types ([d0418fc](https://github.com/yukinarit/pyserde/commit/d0418fc))
@@ -64,7 +79,7 @@ This release had contibutions from 1 person: [@adsharma](https://github.com/adsh
6479

6580
This release had contibutions from 2 people: [@alexmisk](https://github.com/alexmisk), [@pranavvp10](https://github.com/pranavvp10). Thank you so much! :turkey: :joy:
6681

67-
## 0.2.0 (2020-10-31)
82+
## `0.2.0` (2020-10-31)
6883

6984
Please note this release has a breaking change, where `pip install pyserde` no longer installs `msgpack`, `pyyaml` and `toml`. If you want the same behavior as in 0.1.5, use `pip install pyserde[all]`.
7085

@@ -75,23 +90,23 @@ Please note this release has a breaking change, where `pip install pyserde` no l
7590

7691
This release had contibutions from 2 people: [@alexmisk](https://github.com/alexmisk), [@andreymal](https://github.com/andreymal). Thank you so much! :tada: :joy:
7792

78-
## 0.1.5 (2020-10-05)
93+
## `0.1.5` (2020-10-05)
7994

8095
* fix: Type error ([2a271ac](https://github.com/yukinarit/pyserde/commit/2a271acf32bb7b37546d0037ac5b62f39cdc5bb3))
8196
* feat: Now supports Optional of Enum/IntEnum class ([e3618e5](https://github.com/yukinarit/pyserde/commit/e3618e5daea30cb787e80a0f3df23438c8bffcef))
8297

83-
## 0.1.4 (2020-09-25)
98+
## `0.1.4` (2020-09-25)
8499

85100
* feat: Enum support ([6dca279](https://github.com/yukinarit/pyserde/commit/6dca2792c32ceadbfdbd6e8aa50c0ac511661e7d))
86101

87-
## 0.1.3 (2020-09-12)
102+
## `0.1.3` (2020-09-12)
88103

89104
* fix: Fix "has no attribute 'mangle'" error ([c71cb3b](https://github.com/yukinarit/pyserde/commit/c71cb3b5aaad16d008d0220a72c119ee0fbddc1a))
90105

91-
## 0.1.2 (2020-08-01)
106+
## `0.1.2` (2020-08-01)
92107

93108
* feat: Add support for pathlib.Path fields ([28c8c1a](https://github.com/yukinarit/pyserde/commit/28c8c1a))
94109

95-
## 0.1.1 (2020-04-23)
110+
## `0.1.1` (2020-04-23)
96111

97112
* fix: astuple incorrectly deserialize dict ([dfd69e8](https://github.com/yukinarit/pyserde/commit/dfd69e8))

serde/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from .se import asdict, astuple, is_serializable, serialize, to_dict, to_tuple # noqa
88

99
""" Version of pyserde. """
10-
__version__ = '0.3.1'
10+
__version__ = '0.3.2'
1111

1212
__all__ = [
1313
'serialize',

0 commit comments

Comments
 (0)