Skip to content

Commit

Permalink
Bump to include the missing documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ubernostrum committed Sep 18, 2018
1 parent dd20349 commit e61f3ec
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
14 changes: 14 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,20 @@ This document lists changes between released versions of
pwned-passwords-django.


1.3.1 -- released 2018-09-18
----------------------------

Released to include documentation updates which were inadvertently
left out of the 1.3 package.


1.3 -- released 2018-09-18
--------------------------

No new features. No bug fixes. Released only to add explicit markers of
Python 3.7 and Django 2.1 compatibility.


1.2.1 -- released 2018-06-18
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
project = u'pwned-passwords-django'
copyright = u'2018, James Bennett'
version = '1.3'
release = '1.3'
release = '1.3.1'
exclude_trees = ['_build']
pygments_style = 'sphinx'
html_static_path = ['_static']
Expand Down
7 changes: 3 additions & 4 deletions docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@ you when using pwned-passwords-django.
What versions of Django and Python are supported?
-------------------------------------------------

As of pwned-passwords-django |release|, Django 1.11 and 2.0 are
supported, on any version of Python supported by those Django
versions. This includes Python 2.7 (only on Django 1.11), Python 3.4,
Python 3.5, and Python 3.6.
As of pwned-passwords-django |release|, Django 1.11, 2.0 and 2.1 are
supported, on Python 2.7, (Django 1.11 only), 3.4 (Django 1.11 and 2.0
only), 3.5, 3.6 and 3.7 (Django 2.0 and 2.1 only).


Should I use the validator, the middleware, or the API directly?
Expand Down
10 changes: 6 additions & 4 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
Installation
============

pwned-passwords-django |release| supports Django 1.11 and Django 2.0,
on Python versions supported by those versions of Django:
pwned-passwords-django |release| supports Django 1.11, 2.0 and 2.1,
on the following Python versions:

* Django 1.11 supports Python 2.7, 3.4, 3.5, and 3.6.
* Django 1.11 supports Python 2.7, 3.4, 3.5 and 3.6.

* Django 2.0 supports Python 3.4, 3.5, and 3.6.
* Django 2.0 supports Python 3.4, 3.5, 3.6 and 3.7.

* Django 2.1 supports Python 3.5, 3.6 and 3.7.

To install pwned-passwords-django, run::

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(name='pwned-passwords-django',
zip_safe=False, # eggs are the devil.
version='1.3',
version='1.3.1',
description='A Pwned Passwords implementation for Django sites.',
long_description=open(
os.path.join(
Expand Down

0 comments on commit e61f3ec

Please sign in to comment.