1 new commit in tox: https://bitbucket.org/hpk42/tox/commits/b7374e501bde/ Changeset: b7374e501bde User: hpk42 Date: 2014-09-24 13:12:16+00:00 Summary: bump versions, add announcement Affected #: 6 files
diff -r ad8d6e2e76902db255b858d2c08a461d9b104e99 -r b7374e501bde055c5c2b572e6512d22e10f60088 CHANGELOG --- a/CHANGELOG +++ b/CHANGELOG @@ -1,9 +1,9 @@ -1.8.0.dev1 +1.8.0 ----------- - new multi-dimensional configuration support. Many thanks to Alexander Schepanovski for the complete PR with docs. - And to Mike Bayer for filing an issue wrt to setting booleans. + And to Mike Bayer and others for testing and feedback. - fix issue148: remove "__PYVENV_LAUNCHER__" from os.environ when starting subprocesses. Thanks Steven Myint. diff -r ad8d6e2e76902db255b858d2c08a461d9b104e99 -r b7374e501bde055c5c2b572e6512d22e10f60088 doc/Makefile --- a/doc/Makefile +++ b/doc/Makefile @@ -37,7 +37,7 @@ -rm -rf $(BUILDDIR)/* install: clean html - @rsync -avz $(BUILDDIR)/html/ testrun.org:/www/testrun.org/tox/dev + @rsync -avz $(BUILDDIR)/html/ testrun.org:/www/testrun.org/tox/latest #latexpdf #@scp $(BUILDDIR)/latex/*.pdf testrun.org:www-tox/latest diff -r ad8d6e2e76902db255b858d2c08a461d9b104e99 -r b7374e501bde055c5c2b572e6512d22e10f60088 doc/announce/release-1.8.txt --- /dev/null +++ b/doc/announce/release-1.8.txt @@ -0,0 +1,54 @@ +tox 1.8: Generative/combinatorial environments specs +============================================================================= + +I am happy to announce tox 1.8 which implements parametrized environments. + +See https://tox.testrun.org/config.html#generating-environments-conditional-settings +for examples and the new backward compatible syntax in your tox.ini file. + +Many thanks to Alexander Schepanovski for implementing and refining +it based on the specifcation draft. + +More documentation about tox in general: + + http://tox.testrun.org/ + +Installation: + + pip install -U tox + +code hosting and issue tracking on bitbucket: + + https://bitbucket.org/hpk42/tox + +What is tox? +---------------- + +tox standardizes and automates tedious test activities driven from a +simple ``tox.ini`` file, including: + +* creation and management of different virtualenv environments + with different Python interpreters +* packaging and installing your package into each of them +* running your test tool of choice, be it nose, py.test or unittest2 or other tools such as "sphinx" doc checks +* testing dev packages against each other without needing to upload to PyPI + +best, +Holger Krekel, merlinux GmbH + + +Changes 1.8 (compared to 1.7.2) +--------------------------------------- + +- new multi-dimensional configuration support. Many thanks to + Alexander Schepanovski for the complete PR with docs. + And to Mike Bayer and others for testing and feedback. + +- fix issue148: remove "__PYVENV_LAUNCHER__" from os.environ when starting + subprocesses. Thanks Steven Myint. + +- fix issue152: set VIRTUAL_ENV when running test commands, + thanks Florian Ludwig. + +- better report if we can't get version_info from an interpreter + executable. Thanks Floris Bruynooghe. diff -r ad8d6e2e76902db255b858d2c08a461d9b104e99 -r b7374e501bde055c5c2b572e6512d22e10f60088 doc/conf.py --- a/doc/conf.py +++ b/doc/conf.py @@ -49,7 +49,7 @@ # # The short X.Y version. release = "1.8" -version = "1.8.0.dev" +version = "1.8.0" # The full version, including alpha/beta/rc tags. # The language for content autogenerated by Sphinx. Refer to documentation diff -r ad8d6e2e76902db255b858d2c08a461d9b104e99 -r b7374e501bde055c5c2b572e6512d22e10f60088 setup.py --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ description='virtualenv-based automation of test activities', long_description=open("README.rst").read(), url='http://tox.testrun.org/', - version='1.8.0.dev2', + version='1.8.0', license='http://opensource.org/licenses/MIT', platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], author='holger krekel', diff -r ad8d6e2e76902db255b858d2c08a461d9b104e99 -r b7374e501bde055c5c2b572e6512d22e10f60088 tox/__init__.py --- a/tox/__init__.py +++ b/tox/__init__.py @@ -1,5 +1,5 @@ # -__version__ = '1.8.0.dev2' +__version__ = '1.8.0' class exception: class Error(Exception): Repository URL: https://bitbucket.org/hpk42/tox/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email. _______________________________________________ pytest-commit mailing list pytest-commit@python.org https://mail.python.org/mailman/listinfo/pytest-commit