Skip to content

Commit 9380c55

Browse files
committed
Merge pull request #54 from psi29a/newer_twisted
tell travis and tox to drop older and add newer versions of twisted a…
2 parents 5b3516f + b31c3a8 commit 9380c55

File tree

6 files changed

+26
-35
lines changed

6 files changed

+26
-35
lines changed

.travis.yml

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,20 @@ language: python
22
python: 2.7
33

44
env:
5-
- TOX_ENV=py26-twlatest
6-
- TOX_ENV=py26-twtrunk
5+
- TOX_ENV=py26-tw154
76
- TOX_ENV=py26-tw140
8-
- TOX_ENV=py26-tw132
9-
- TOX_ENV=py26-tw131
10-
- TOX_ENV=py26-tw130
11-
- TOX_ENV=py26-tw123
12-
- TOX_ENV=py26-tw122
13-
- TOX_ENV=py26-tw121
147
- TOX_ENV=py27-twlatest
158
- TOX_ENV=py27-twtrunk
9+
- TOX_ENV=py27-tw162
10+
- TOX_ENV=py27-tw160
11+
- TOX_ENV=py27-tw150
1612
- TOX_ENV=py27-tw140
17-
- TOX_ENV=py27-tw132
18-
- TOX_ENV=py27-tw131
19-
- TOX_ENV=py27-tw130
20-
- TOX_ENV=py27-tw123
21-
- TOX_ENV=py27-tw122
22-
- TOX_ENV=py27-tw121
2313
- TOX_ENV=pypy-twlatest
2414
- TOX_ENV=pypy-twtrunk
15+
- TOX_ENV=pypy-tw162
16+
- TOX_ENV=pypy-tw160
17+
- TOX_ENV=pypy-tw150
2518
- TOX_ENV=pypy-tw140
26-
- TOX_ENV=pypy-tw132
27-
- TOX_ENV=pypy-tw131
28-
- TOX_ENV=pypy-tw130
29-
- TOX_ENV=pypy-tw123
30-
- TOX_ENV=pypy-tw122
31-
- TOX_ENV=pypy-tw121
3219
- TOX_ENV=pyflakes
3320
- TOX_ENV=manifest
3421

docs/source/AUTHORS.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ Contributors
88
============
99

1010
- Anton Gyllenberg
11+
- Aren Sandersen
1112
- Bret Curtis
1213
- Carl Waldbieser
1314
- Christopher Bartz
1415
- David Strauss
1516
- HawkOwl
1617
- Hynek Schlawack
1718
- Kenny MacDermid
19+
- Michael Schlenker
1820
- Stefan Andersson
1921
- Tommi Virtanen

docs/source/NEWS.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
Changelog
22
=========
33

4-
Release 14.1 (UNRELEASED)
4+
Release 16.0 (2016-06-07)
55
-------------------------
66

77
Features
88
^^^^^^^^
99

1010
- Make meta data introspectable
1111
- Added `proxybase.py`, an LDAP proxy that is easier to hook into.
12-
12+
- When parsing LDAPControls, criticality may not exist while controlValue still does
13+
- Requested attributes can also be passed as '*' symbol
14+
- Numerous small bug fixes.
15+
- Additional documentation
16+
- Updated Travis-CI, Tox and other bits for better coverage.
1317

1418
Release 14.0 (2014-10-31)
1519
-------------------------

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@
4949

5050
# General information about the project.
5151
project = u'Ldaptor'
52-
copyright = u'2014, Twisted Matrix Labs'
52+
copyright = u'2016, Twisted Matrix Labs'
5353

5454
# The version info for the project you're documenting, acts as replacement for
5555
# |version| and |release|, also used in various other places throughout the
5656
# built documents.
5757
#
5858
# The short X.Y version.
59-
version = '14.0'
59+
version = '16.0'
6060
# The full version, including alpha/beta/rc tags.
61-
release = '14.0'
61+
release = '16.0'
6262

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

ldaptor/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
__version__ = "14.1.0dev"
1+
__version__ = "16.0.0"
22

33
__title__ = "ldaptor"
44
__description__ = "A Pure-Python Twisted library for LDAP"
55
__uri__ = "https://github.com/twisted/ldaptor"
66

77
__license__ = "MIT"
88
__author__ = "The ldaptor developers"
9-
__copyright__ = "Copyright (c) 2002-2014 {0}".format(__author__)
9+
__copyright__ = "Copyright (c) 2002-2016 {0}".format(__author__)

tox.ini

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
{py26,py27,pypy}-{twlatest,twtrunk,tw140,tw132,tw131,tw130,tw123,tw122,tw121},
3+
{py26,py27,pypy}-{twlatest,twtrunk,tw162,tw160,tw154,tw150,tw140},{py33,py34,py35}-{twtrunk},
44
pyflakes, manifest
55

66

@@ -11,14 +11,12 @@ deps =
1111
pyparsing
1212
pycrypto
1313
twlatest: Twisted
14-
twtrunk: git+git://github.com/twisted/twisted.git
14+
twtrunk: https://github.com/twisted/twisted/archive/trunk.zip
15+
tw162: Twisted==16.2
16+
tw160: Twisted==16.0
17+
tw154: Twisted==15.4
18+
tw150: Twisted==15.0
1519
tw140: Twisted==14.0
16-
tw132: Twisted==13.2
17-
tw131: Twisted==13.1
18-
tw130: Twisted==13.0
19-
tw123: Twisted==12.3
20-
tw122: Twisted==12.2
21-
tw121: Twisted==12.1
2220
commands =
2321
{envpython} --version
2422
trial --version

0 commit comments

Comments
 (0)