diff options
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | setup.py | 2 | ||||
-rw-r--r-- | tox/__init__.py | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ -2.1.2 (dev) ------------ +2.2.0 +----- - fix issue265 and add LD_LIBRARY_PATH to passenv on linux by default because otherwise the python interpreter might not start up in @@ -48,7 +48,7 @@ def main(): description='virtualenv-based automation of test activities', long_description=open("README.rst").read(), url='http://tox.testrun.org/', - version='2.1.2.dev1', + version='2.2.0', license='http://opensource.org/licenses/MIT', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], author='holger krekel', diff --git a/tox/__init__.py b/tox/__init__.py index c4f8107..d623f38 100644 --- a/tox/__init__.py +++ b/tox/__init__.py @@ -1,5 +1,5 @@ # -__version__ = '2.1.2.dev1' +__version__ = '2.2.0' from .hookspecs import hookspec, hookimpl # noqa |