diff options
-rw-r--r-- | .treerc | 2 | ||||
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | doc/contributing.rst | 4 |
4 files changed, 6 insertions, 6 deletions
@@ -10,5 +10,5 @@ ignore = *.min.js sample_html sample_html_beta *.so *.pyd - *.zip + *.gz *.zip _build diff --git a/CHANGES.txt b/CHANGES.txt index ababb44a..95274785 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,8 +2,8 @@ Change history for Coverage.py ------------------------------ -Version 3.5.4b1 ---------------- +Version 3.6b1 +------------- - Wildcards in ``include=`` and ``omit=`` arguments were not handled properly in reporting functions, though they were when running. Now they are handled diff --git a/coverage/version.py b/coverage/version.py index 5a8a2d6e..cf18d62f 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -1,7 +1,7 @@ """The version and URL for coverage.py""" # This file is exec'ed in setup.py, don't import anything! -__version__ = "3.5.4b1" # see detailed history in CHANGES.txt +__version__ = "3.6b1" # see detailed history in CHANGES.txt __url__ = "http://nedbatchelder.com/code/coverage" if max(__version__).isalpha(): diff --git a/doc/contributing.rst b/doc/contributing.rst index d0967f88..e2882a64 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -61,7 +61,7 @@ The tests are written as standard unittest-style tests, and are run with $ tox GLOB sdist-make: /home/ned/coverage/setup.py - py25 sdist-reinst: /home/ned/coverage/tox/dist/coverage-3.5.4b1.zip + py25 sdist-reinst: /home/ned/coverage/tox/dist/coverage-3.6b1.zip py25 runtests: commands[0] py25 runtests: commands[1] py25 runtests: commands[2] @@ -81,7 +81,7 @@ The tests are written as standard unittest-style tests, and are run with Ran 360 tests in 10.044s OK - py26 sdist-reinst: /home/ned/coverage/trunk/.tox/dist/coverage-3.5.4b1.zip + py26 sdist-reinst: /home/ned/coverage/trunk/.tox/dist/coverage-3.6b1.zip py26 runtests: commands[0] py26 runtests: commands[1] py26 runtests: commands[2] |