Skip to content

Commit 7ed336c

Browse files
committed
[Feat] update actual info to setup.py
1 parent f956d18 commit 7ed336c

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

HISTORY.rst

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
History
44
-------
55

6+
0.3.1 (2021-08-02)
7+
++++++++++++++++++
8+
9+
* Update meta information in setup.py.
10+
611
0.3.0 (2021-08-02)
712
++++++++++++++++++
813

django_db_comments/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '0.3.0'
1+
__version__ = '0.3.1'
22

33
default_app_config = 'django_db_comments.apps.DjangoDbCommentsConfig'

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.0
2+
current_version = 0.3.1
33
commit = True
44
tag = True
55

setup.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from distutils.core import setup
1010

1111

12-
version = '0.3.0'
12+
version = '0.3.1'
1313

1414

1515
if sys.argv[-1] == 'publish':
@@ -49,17 +49,21 @@
4949
zip_safe=False,
5050
keywords='django-db-comments',
5151
classifiers=[
52-
'Development Status :: 3 - Alpha',
52+
'Development Status :: 4 - Beta',
5353
'Framework :: Django :: 1.11',
5454
'Framework :: Django :: 2.0',
55+
'Framework :: Django :: 2.2',
56+
'Framework :: Django :: 3.1',
5557
'Intended Audience :: Developers',
5658
'License :: OSI Approved :: BSD License',
5759
'Natural Language :: English',
5860
'Programming Language :: Python :: 2',
5961
'Programming Language :: Python :: 2.7',
6062
'Programming Language :: Python :: 3',
61-
'Programming Language :: Python :: 3.4',
6263
'Programming Language :: Python :: 3.5',
6364
'Programming Language :: Python :: 3.6',
65+
'Programming Language :: Python :: 3.7',
66+
'Programming Language :: Python :: 3.8',
67+
'Programming Language :: Python :: 3.9',
6468
],
6569
)

0 commit comments

Comments
 (0)