mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
Bump version to 4.2.1
Signed-off-by: Aleksi Häkli <aleksi.hakli@iki.fi>
This commit is contained in:
parent
e7a2f1f718
commit
ff2c1d9834
3 changed files with 12 additions and 3 deletions
|
|
@ -1,6 +1,13 @@
|
|||
Changes
|
||||
=======
|
||||
|
||||
4.2.1 (2018-04-18)
|
||||
------------------
|
||||
|
||||
- Fix unicode string interpolation on Python 2.7
|
||||
[aleksihakli]
|
||||
|
||||
|
||||
4.2.0 (2018-04-13)
|
||||
------------------
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
from __future__ import unicode_literals
|
||||
|
||||
__version__ = '4.2.0'
|
||||
__version__ = '4.2.1'
|
||||
|
||||
default_app_config = 'axes.apps.AppConfig'
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,8 @@ import os
|
|||
import shlex
|
||||
import sphinx_rtd_theme
|
||||
|
||||
import axes
|
||||
|
||||
# If extensions (or modules to document with autodoc) are in another directory,
|
||||
# add these directories to sys.path here. If the directory is relative to the
|
||||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||
|
|
@ -56,9 +58,9 @@ author = 'jazzband'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '4.2.0'
|
||||
version = axes.get_version()
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '4.2.0'
|
||||
release = axes.get_version()
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
Loading…
Reference in a new issue