Skip to content

Commit 215c8cb

Browse files
committed
Merge pull request #10 from caktus/prepare-release
Prepare for 1.1 release
2 parents 8713f18 + a31a695 commit 215c8cb

File tree

8 files changed

+37
-61
lines changed

8 files changed

+37
-61
lines changed

.travis.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ python:
44
- "2.7"
55

66
env:
7-
- TOXENV=py26-1.3.X
8-
- TOXENV=py26-1.4.X
9-
- TOXENV=py26-1.5.X,py32-1.5.X,py33-1.5.X
10-
- TOXENV=py26-1.6.X,py32-1.6.X,py33-1.6.X
11-
- TOXENV=py27-1.7.X,py33-1.7.X
7+
- TOXENV=py26-1.3
8+
- TOXENV=py26-1.4
9+
- TOXENV=py26-1.5,py32-1.5,py33-1.5
10+
- TOXENV=py26-1.6,py32-1.6,py33-1.6
11+
- TOXENV=py27-1.7,py33-1.7,py34-1.7
12+
- TOXENV=py27-1.8,py33-1.8,py34-1.8
13+
- TOXENV=py27-1.9,py34-1.9
1214
- TOXENV=py27-trunk,py33-trunk
1315

1416
install:

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ Mark Lavin
77
Tobias McNulty
88
Alvin Chow
99
Vinod Kurup
10+
Gavin Wahl

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2011-2014, Caktus Consulting Group, LLC
1+
Copyright (c) 2011-2016, Caktus Consulting Group, LLC
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

bandit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
'major': 1,
77
'minor': 1,
88
'micro': 0,
9-
'releaselevel': 'dev',
9+
'releaselevel': 'final',
1010
}
1111

1212

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
# General information about the project.
4545
project = u'django-email-bandit'
46-
copyright = u'2011-2014, Caktus Consulting Group'
46+
copyright = u'2011-2016, Caktus Consulting Group'
4747

4848
# The version info for the project you're documenting, acts as replacement for
4949
# |version| and |release|, also used in various other places throughout the

docs/releases.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ to a ``DeprecationWarning`` and the following release the feature and it's relat
2626
code will be removed.
2727

2828

29-
v1.1 (Released TBD)
29+
v1.1 (Released 2016-01-20)
3030
-------------------------------
3131

3232
- Backends now intercept the CC and BCC fields as well
33-
33+
- Entire domains can be whitelisted. See the :doc:`settings documentation <settings>`.
3434

3535
v1.0 (Released 2014-03-21)
3636
-------------------------------

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ def read_file(filename):
3232
'Programming Language :: Python',
3333
'Programming Language :: Python :: 2.6',
3434
'Programming Language :: Python :: 2.7',
35+
'Programming Language :: Python :: 3',
3536
'Programming Language :: Python :: 3.2',
3637
'Programming Language :: Python :: 3.3',
38+
'Programming Language :: Python :: 3.4',
3739
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
3840
'Topic :: Software Development :: Libraries :: Python Modules',
3941
),

tox.ini

+22-51
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,32 @@
11
[tox]
22
downloadcache = {toxworkdir}/_download/
3-
envlist = py33-trunk,py27-trunk,py33-1.7.X,py27-1.7.X,py33-1.6.X,py32-1.6.X,py26-1.6.X,py33-1.5.X,py32-1.5.X,py26-1.5.X,py26-1.4.X,py26-1.3.X,docs
3+
envlist = py26-{1.3,1.4},
4+
{py26,py32,py33}-{1.5,1.6},
5+
{py27,py33,py34}-{1.7,1.8},
6+
{py27,py34}-{1.9,trunk},
7+
docs
48

59
[testenv]
610
commands = {envpython} runtests.py
7-
8-
[testenv:py27-trunk]
9-
basepython = python2.7
10-
deps = https://github.com/django/django/zipball/master
11-
12-
[testenv:py33-trunk]
13-
basepython = python3.3
14-
deps = https://github.com/django/django/zipball/master
15-
16-
[testenv:py33-1.7.X]
17-
basepython = python3.3
18-
deps = https://www.djangoproject.com/download/1.7.b4/tarball/
19-
20-
[testenv:py27-1.7.X]
21-
basepython = python2.7
22-
deps = https://www.djangoproject.com/download/1.7.b4/tarball/
23-
24-
[testenv:py33-1.6.X]
25-
basepython = python3.3
26-
deps = django>=1.6,<1.7
27-
28-
[testenv:py32-1.6.X]
29-
basepython = python3.2
30-
deps = django>=1.6,<1.7
31-
32-
[testenv:py26-1.6.X]
33-
basepython = python2.6
34-
deps = django>=1.6,<1.7
35-
36-
[testenv:py33-1.5.X]
37-
basepython = python3.3
38-
deps = django>=1.5,<1.6
39-
40-
[testenv:py32-1.5.X]
41-
basepython = python3.2
42-
deps = django>=1.5,<1.6
43-
44-
[testenv:py26-1.5.X]
45-
basepython = python2.6
46-
deps = django>=1.5,<1.6
47-
48-
[testenv:py26-1.4.X]
49-
basepython = python2.6
50-
deps = django>=1.4,<1.5
51-
52-
[testenv:py26-1.3.X]
53-
basepython = python2.6
54-
deps = django>=1.3,<1.4
11+
basepython =
12+
py26: python2.6
13+
py27: python2.7
14+
py32: python3.2
15+
py33: python3.3
16+
py34: python3.4
17+
deps =
18+
1.3: Django>=1.3,<1.4
19+
1.4: Django>=1.4,<1.5
20+
1.5: Django>=1.5,<1.6
21+
1.6: Django>=1.6,<1.7
22+
1.7: Django>=1.7,<1.8
23+
1.8: Django>=1.8,<1.9
24+
1.9: Django>=1.9,<1.10
25+
trunk: https://github.com/django/django/archive/master.zip
5526

5627
[testenv:docs]
57-
basepython = python2.6
58-
deps = Sphinx==1.1.3
28+
basepython = python3.4
29+
deps = Sphinx==1.3.4
5930
caktus-sphinx-theme==0.1.0
6031
commands =
6132
{envbindir}/sphinx-build -a -n -b html -d docs/_build/doctrees docs docs/_build/html

0 commit comments

Comments
 (0)