diff options
-rw-r--r-- | CHANGES.txt | 4 | ||||
-rw-r--r-- | coverage/__init__.py | 2 | ||||
-rw-r--r-- | doc/changes.rst | 5 | ||||
-rw-r--r-- | doc/conf.py | 2 | ||||
-rw-r--r-- | doc/index.rst | 4 | ||||
-rw-r--r-- | doc/install.rst | 4 | ||||
-rw-r--r-- | setup.py | 8 |
7 files changed, 17 insertions, 12 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index edc921cd..c3da3f4e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,8 +2,8 @@ Change history for Coverage.py ------------------------------ -Version 3.5b2 -------------- +Version 3.5 --- 29 June 2011 +---------------------------- - The HTML report hotkeys now behave slightly differently when the current chunk isn't visible at all: a chunk on the screen will be selected, diff --git a/coverage/__init__.py b/coverage/__init__.py index 90fffa47..d8dbc0f6 100644 --- a/coverage/__init__.py +++ b/coverage/__init__.py @@ -5,7 +5,7 @@ http://nedbatchelder.com/code/coverage """ -__version__ = "3.5b1" # see detailed history in CHANGES.txt +__version__ = "3.5" # see detailed history in CHANGES.txt __url__ = "http://nedbatchelder.com/code/coverage" if max(__version__).isalpha(): diff --git a/doc/changes.rst b/doc/changes.rst index 8b97507e..45e7a75c 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -17,6 +17,7 @@ Major change history for coverage.py :history: 20100906T133800, updated for 3.4b2 :history: 20100919T163400, updated for 3.4 release. :history: 20110604T214100, updated for 3.5b1 +:history: 20110629T082200, updated for 3.5 These are the major changes for coverage.py. For a more complete change @@ -25,8 +26,8 @@ history, see the `CHANGES.txt`_ file in the source tree. .. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt -Version 3.5b1 --- 5 June 2011 ------------------------------ +Version 3.5 --- 29 June 2011 +---------------------------- HTML reporting: diff --git a/doc/conf.py b/doc/conf.py index e4dd824d..939a5bd2 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -49,7 +49,7 @@ copyright = u'2009-2011, Ned Batchelder' # The short X.Y version.
version = '3.5'
# The full version, including alpha/beta/rc tags.
-release = '3.5b1'
+release = '3.5'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/doc/index.rst b/doc/index.rst index e7a60531..defd8064 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -18,6 +18,8 @@ coverage.py :history: 20100919T163500, updated for 3.4 release. :history: 20110213T081200, claim true 3.2 compatibility. :history: 20110604T114800, update for 3.5b1 +:history: 20110629T082300, update for 3.5 + Coverage.py is a tool for measuring code coverage of Python programs. It monitors your program, noting which parts of the code have been executed, then @@ -29,7 +31,7 @@ not. .. ifconfig:: not prerelease - The latest version is coverage.py 3.4, released 10 September 2010. + The latest version is coverage.py 3.5, released 29 June 2011. It is supported on Python versions 2.3 through 3.2. .. ifconfig:: prerelease diff --git a/doc/install.rst b/doc/install.rst index 63f7e214..8807e4ba 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -8,6 +8,8 @@ Installation :history: 20100820T151500, updated for 3.4b1. :history: 20100906T134800, updated for 3.4b2. :history: 20110604T213400, updated for 3.5b1. +:history: 20110629T082400, updated for 3.5. + .. highlight:: console .. _coverage_pypi: http://pypi.python.org/pypi/coverage @@ -59,5 +61,5 @@ If all went well, you should be able to open a command prompt, and see coverage installed properly:: $ coverage --version - Coverage.py, version 3.5b1. http://nedbatchelder.com/code/coverage + Coverage.py, version 3.5. http://nedbatchelder.com/code/coverage @@ -11,14 +11,14 @@ Coverage.py runs on Pythons 2.3 through 3.2. Documentation is at `nedbatchelder.com <%s>`_. Code repository and issue tracker are at `bitbucket.org <http://bitbucket.org/ned/coveragepy>`_. -New in 3.2: Branch coverage! - -New in 3.3: .coveragerc files. +New in 3.5: Branch coverage exclusions, keyboard shortcuts in HTML report. New in 3.4: Better control over source to measure, and unexecuted files can be reported. -New in 3.5: Branch coverage exclusions, keyboard shortcuts in HTML report. +New in 3.3: .coveragerc files. + +New in 3.2: Branch coverage! """ |