Skip to content

Commit b20c3e2

Browse files
committed
Bump to 1.0.1
1 parent 97ff992 commit b20c3e2

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGES.rst

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
Changelog
22
=========
33

4-
Changes in git
5-
--------------
6-
7-
* Fixed wheel package
8-
* Fixed setup classifiers
4+
Changes in 1.0.1 (2019-07-15)
5+
-----------------------------
6+
7+
* Fixed crash in ``ReturnToSiteItem`` when visiting the admin password change form.
8+
* Fixed early gettext calls on module loading.
9+
* Fixed wheel package.
10+
* Fixed setup classifiers.
11+
* Fixed building docs.
912
* Bump django-admin-tools_ to proper minimal version.
13+
* Reformat code with isort and black.
1014

1115

1216
Changes in 1.0 (2018-01-22)

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = "1.0"
59+
version = "1.0.1"
6060
# The full version, including alpha/beta/rc tags.
61-
release = "1.0a1"
61+
release = "1.0.1"
6262

6363
# The language for content autogenerated by Sphinx. Refer to documentation
6464
# for a list of supported languages.

fluent_dashboard/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# following PEP 440
2-
__version__ = "1.0"
2+
__version__ = "1.0.1"

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,16 @@ def find_version(*parts):
6565
"Programming Language :: Python :: 3.4",
6666
"Programming Language :: Python :: 3.5",
6767
"Programming Language :: Python :: 3.6",
68+
"Programming Language :: Python :: 3.7",
6869
"Framework :: Django",
6970
"Framework :: Django :: 1.7",
7071
"Framework :: Django :: 1.8",
7172
"Framework :: Django :: 1.9",
7273
"Framework :: Django :: 1.10",
7374
"Framework :: Django :: 1.11",
7475
"Framework :: Django :: 2.0",
76+
"Framework :: Django :: 2.1",
77+
"Framework :: Django :: 2.2",
7578
"Topic :: Internet :: WWW/HTTP",
7679
"Topic :: Software Development :: Libraries :: Application Frameworks",
7780
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)