Skip to content

Commit 24224be

Browse files
authored
Merge pull request #378 from macropin/joshblum/2.7-release
prep for 2. 7 release
2 parents bd06620 + d87c0ec commit 24224be

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

CHANGELOG

+8-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,17 @@
22
django-registration-redux changelog
33
===================================
44

5-
Version 2.7, TBD
5+
Version 2.8, TBD
66
----------------
7+
8+
Version 2.7, 4 January, 2020
9+
----------------
10+
* Feature: Django 3.0 support - `#373
11+
<https://github.com/macropin/django-registration/pull/373>_`
712
* Feature: Use SHA256 instead of SHA1 for `activation_key` - `#362
813
<https://github.com/macropin/django-registration/pull/362>_`
14+
* Bugfix: Changed path reference from 'login' to 'auth_login'. -
15+
`#335 <https://github.com/macropin/django-registration/pull/335>_`
916

1017
Version 2.6, 10 April, 2019
1118
----------------

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@
4646
# built documents.
4747
#
4848
# The short X.Y version.
49-
version = '2.6'
49+
version = '2.7'
5050
# The full version, including alpha/beta/rc tags.
51-
release = '2.6'
51+
release = '2.7'
5252

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

docs/upgrade.rst

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,17 @@ Django version requirement
1414

1515
As of |version|, |project| requires Django 1.11 or newer;
1616
older Django releases may work, but are officially unsupported. Additionally,
17-
|project| officially supports Python 2.7, 3.4, and 3.5, 3.6.
17+
|project| officially supports Python 2.7, 3.5, 3.6, 3.7 and 3.8.
1818

1919

2020
Backwards-incompatible changes
2121
------------------------------
2222

23+
Version 2.7
24+
```````````
25+
26+
- None
27+
2328
Version 2.6
2429
```````````
2530

registration/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (2, 6, 0, 'final', 0)
1+
VERSION = (2, 7, 0, 'final', 0)
22

33

44
def get_version():

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ def run_tests(self):
4848
'Programming Language :: Python',
4949
'Programming Language :: Python :: 2.7',
5050
'Programming Language :: Python :: 3',
51-
'Programming Language :: Python :: 3.4',
5251
'Programming Language :: Python :: 3.5',
5352
'Programming Language :: Python :: 3.6',
5453
'Programming Language :: Python :: 3.7',
54+
'Programming Language :: Python :: 3.8',
5555
'Topic :: Software Development :: Libraries :: Python Modules',
5656
'Topic :: Utilities'
5757
],

tox.ini

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[tox]
77
envlist =
88
py{27,34,35,36,37}-django111,
9-
py3{4,5,6,7}-django20,
9+
py3{5,6,7}-django20,
1010
py3{5,6,7}-django21,
1111
py3{5,6,7}-django22,
1212
py3{6,7,8}-django30,
@@ -25,7 +25,6 @@ deps =
2525
[travis]
2626
python =
2727
2.7: py27
28-
3.4: py34
2928
3.5: py35
3029
3.6: py36
3130
3.7: py37

0 commit comments

Comments
 (0)