Skip to content

Commit c357790

Browse files
committed
closes #23
1 parent 39de3bc commit c357790

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Brian Kohan
3+
Copyright (c) 2022-2023 Brian Kohan
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

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, 1, 1)
50+
VERSION = (1, 1, 2)
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.1; 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.1.1
9+
django-enum==1.1.2

doc/source/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Change Log
33
==========
44

5+
v1.1.2
6+
======
7+
8+
* Fixed `LICENSE packaged into source dir. <https://github.com/bckohan/django-enum/issues/23>`_
9+
510
v1.1.1
611
======
712

pyproject.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-enum"
3-
version = "1.1.1"
3+
version = "1.1.2"
44
description = "Full and natural support for enumerations as Django model fields."
55
authors = ["Brian Kohan <[email protected]>"]
66
license = "MIT"
@@ -30,9 +30,7 @@ classifiers = [
3030
"Topic :: Software Development :: Libraries",
3131
"Topic :: Software Development :: Libraries :: Python Modules"
3232
]
33-
include = [
34-
"LICENSE",
35-
]
33+
3634
packages = [
3735
{ include = "django_enum" }
3836
]

0 commit comments

Comments
 (0)