Skip to content

Commit 1bd39db

Browse files
committed
fix readme, version increment
1 parent 8083ab9 commit 1bd39db

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
.. _enumerations: https://docs.python.org/3/library/enum.html#enum.Enum
3131
.. _ValueError: https://docs.python.org/3/library/exceptions.html#ValueError
3232
.. _DRY: https://en.wikipedia.org/wiki/Don%27t_repeat_yourself
33-
.. _enum-properties: <https://pypi.org/project/enum-properties/>
34-
.. _django-enum: <https://django-enum.readthedocs.io/en/latest/>:
33+
.. _enum-properties: https://pypi.org/project/enum-properties
34+
.. _django-enum: https://django-enum.readthedocs.io/en/latest
3535

3636
Django Enum
3737
###########

django_enum/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
'EnumFilter'
4848
]
4949

50-
VERSION = (1, 0, 1)
50+
VERSION = (1, 1, 0)
5151

5252
__title__ = 'Django Enum'
5353
__version__ = '.'.join(str(i) for i in VERSION)

doc/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ sphinxcontrib-htmlhelp==2.0.0; python_version >= "3.5"
66
sphinxcontrib-jsmath==1.0.1; python_version >= "3.5"
77
sphinxcontrib-qthelp==1.0.3; python_version >= "3.5"
88
sphinxcontrib-serializinghtml==1.1.5; python_version >= "3.5"
9-
django-enum==1.0.1
9+
django-enum==1.1.0

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-enum"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
description = "Full and natural support for enumerations as Django model fields."
55
authors = ["Brian Kohan <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)