Skip to content

Commit 60f4bd8

Browse files
committed
Bump version numbers for 3.5b1
1 parent 140c97e commit 60f4bd8

File tree

6 files changed

+15
-8
lines changed

6 files changed

+15
-8
lines changed

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.5a1" # see detailed history in CHANGES.txt
8+
__version__ = "3.5b1" # see detailed history in CHANGES.txt
99

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

doc/changes.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,17 @@ Major change history for coverage.py
1616
:history: 20100820T151500, updated for 3.4b1
1717
:history: 20100906T133800, updated for 3.4b2
1818
:history: 20100919T163400, updated for 3.4 release.
19+
:history: 20110604T214100, updated for 3.5b1
20+
1921

2022
These are the major changes for coverage.py. For a more complete change
2123
history, see the `CHANGES.txt`_ file in the source tree.
2224

2325
.. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt
2426

2527

26-
Version 3.5b1 --- ?? June 2011
27-
------------------------------
28+
Version 3.5b1 --- 5 June 2011
29+
-----------------------------
2830

2931
HTML reporting:
3032

doc/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@
4040

4141
# General information about the project.
4242
project = u'coverage.py'
43-
copyright = u'2009-2010, Ned Batchelder'
43+
copyright = u'2009-2011, Ned Batchelder'
4444

4545
# The version info for the project you're documenting, acts as replacement for
4646
# |version| and |release|, also used in various other places throughout the
4747
# built documents.
4848
#
4949
# The short X.Y version.
50-
version = '3.4'
50+
version = '3.5'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '3.4'
52+
release = '3.5b1'
5353

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

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Coverage measurement is typically used to gauge the effectiveness of tests. It
2727
can show which parts of your code are being exercised by tests, and which are
2828
not.
2929

30-
The latest version is 3.5b1, released ?? June 2011
30+
The latest version is 3.5b1, released 5 June 2011.
3131
It is supported on Python versions 2.3 through 3.2.
3232

3333

doc/install.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Installation
77
:history: 20100725T225600, new for 3.4.
88
:history: 20100820T151500, updated for 3.4b1.
99
:history: 20100906T134800, updated for 3.4b2.
10+
:history: 20110604T213400, updated for 3.5b1.
1011

1112
.. highlight:: console
1213
.. _coverage_pypi: http://pypi.python.org/pypi/coverage
@@ -58,4 +59,5 @@ If all went well, you should be able to open a command prompt, and see
5859
coverage installed properly::
5960

6061
$ coverage --version
61-
Coverage.py, version 3.4. http://nedbatchelder.com/code/coverage
62+
Coverage.py, version 3.5b1. http://nedbatchelder.com/code/coverage
63+

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
1818
New in 3.4: Better control over source to measure, and unexecuted files
1919
can be reported.
20+
21+
New in 3.5: Branch coverage exclusions, keyboard shortcuts in HTML report.
22+
2023
"""
2124

2225
# This file is used unchanged under all versions of Python, 2.x and 3.x.

0 commit comments

Comments
 (0)