Skip to content

Commit

Permalink
Release 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Avanov committed Jun 23, 2019
1 parent 66f6b70 commit a4f3121
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -2,12 +2,16 @@
CHANGELOG
=========

0.13.0
==============

* Added support for regular classes with annotated ``__init__``.

0.12.1, 0.12.2
==============

* Experimental support for SumType.


0.12.0
============

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '0.12'
version = '0.13'
# The full version, including alpha/beta/rc tags.
release = '0.12.2'
release = '0.13.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
5 changes: 3 additions & 2 deletions docs/quickstart_guide.rst
Expand Up @@ -148,8 +148,8 @@ any nested types, for instance:
mk_person, dict_person = type_constructor & overrides ^ Person
Supported types by default
--------------------------
Supported types
---------------

* ``bool``
* ``int``
Expand All @@ -170,6 +170,7 @@ Supported types by default
* ``typing_extensions.Literal``
* ``pyrsistent.typing.PVector``
* ``pyrsistent.typing.PMap``
* Regular classes with annotated ``__init__`` method.


Sum Type
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -38,7 +38,7 @@ def requirements(at_path: Path):
# ----------------------------

setup(name='typeit',
version='0.12.2',
version='0.13.0',
description='typeit brings typed data into your project',
long_description=README,
classifiers=[
Expand Down

0 comments on commit a4f3121

Please sign in to comment.