Skip to content

Commit b04667a

Browse files
committed
Bump version number to 3.5
1 parent 0cefb99 commit b04667a

File tree

7 files changed

+17
-12
lines changed

7 files changed

+17
-12
lines changed

CHANGES.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Change history for Coverage.py
33
------------------------------
44

5-
Version 3.5b2
6-
-------------
5+
Version 3.5 --- 29 June 2011
6+
----------------------------
77

88
- The HTML report hotkeys now behave slightly differently when the current
99
chunk isn't visible at all: a chunk on the screen will be selected,

coverage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
"""
77

8-
__version__ = "3.5b1" # see detailed history in CHANGES.txt
8+
__version__ = "3.5" # see detailed history in CHANGES.txt
99

1010
__url__ = "http://nedbatchelder.com/code/coverage"
1111
if max(__version__).isalpha():

doc/changes.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Major change history for coverage.py
1717
:history: 20100906T133800, updated for 3.4b2
1818
:history: 20100919T163400, updated for 3.4 release.
1919
:history: 20110604T214100, updated for 3.5b1
20+
:history: 20110629T082200, updated for 3.5
2021

2122

2223
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.
2526
.. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt
2627

2728

28-
Version 3.5b1 --- 5 June 2011
29-
-----------------------------
29+
Version 3.5 --- 29 June 2011
30+
----------------------------
3031

3132
HTML reporting:
3233

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
# The short X.Y version.
5050
version = '3.5'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '3.5b1'
52+
release = '3.5'
5353

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

doc/index.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ coverage.py
1818
:history: 20100919T163500, updated for 3.4 release.
1919
:history: 20110213T081200, claim true 3.2 compatibility.
2020
:history: 20110604T114800, update for 3.5b1
21+
:history: 20110629T082300, update for 3.5
22+
2123

2224
Coverage.py is a tool for measuring code coverage of Python programs. It
2325
monitors your program, noting which parts of the code have been executed, then
@@ -29,7 +31,7 @@ not.
2931

3032
.. ifconfig:: not prerelease
3133

32-
The latest version is coverage.py 3.4, released 10 September 2010.
34+
The latest version is coverage.py 3.5, released 29 June 2011.
3335
It is supported on Python versions 2.3 through 3.2.
3436

3537
.. ifconfig:: prerelease

doc/install.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Installation
88
:history: 20100820T151500, updated for 3.4b1.
99
:history: 20100906T134800, updated for 3.4b2.
1010
:history: 20110604T213400, updated for 3.5b1.
11+
:history: 20110629T082400, updated for 3.5.
12+
1113

1214
.. highlight:: console
1315
.. _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
5961
coverage installed properly::
6062

6163
$ coverage --version
62-
Coverage.py, version 3.5b1. http://nedbatchelder.com/code/coverage
64+
Coverage.py, version 3.5. http://nedbatchelder.com/code/coverage
6365

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
Documentation is at `nedbatchelder.com <%s>`_. Code repository and issue
1212
tracker are at `bitbucket.org <http://bitbucket.org/ned/coveragepy>`_.
1313
14-
New in 3.2: Branch coverage!
15-
16-
New in 3.3: .coveragerc files.
14+
New in 3.5: Branch coverage exclusions, keyboard shortcuts in HTML report.
1715
1816
New in 3.4: Better control over source to measure, and unexecuted files
1917
can be reported.
2018
21-
New in 3.5: Branch coverage exclusions, keyboard shortcuts in HTML report.
19+
New in 3.3: .coveragerc files.
20+
21+
New in 3.2: Branch coverage!
2222
2323
"""
2424

0 commit comments

Comments
 (0)