Skip to content

Commit 770d99a

Browse files
committed
Make a real 3.3.1 release
1 parent f80a6b0 commit 770d99a

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
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.3.1
6-
-------------
5+
Version 3.3.1, 6 March 2010
6+
---------------------------
77

88
- Using `parallel=True` in .coveragerc file prevented reporting, but now does
99
not, fixing `issue 49`.

doc/changes.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,27 @@ Major change history for coverage.py
1111
:history: 20091128T072200, changes for 3.2
1212
:history: 20091205T161525, 3.2 final
1313
:history: 20100221T151900, changes for 3.3
14+
:history: 20100306T181400, changes for 3.3.1
1415

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

1819
.. _CHANGES.txt: http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt
1920

2021

22+
Version 3.3.1, 6 March 2010
23+
---------------------------
24+
25+
- Using `parallel=True` in .coveragerc file prevented reporting, but now does
26+
not, fixing `issue 49`.
27+
28+
- When running your code with "coverage run", if you call `sys.exit()`,
29+
coverage.py will exit with that status code, fixing `issue 50`.
30+
31+
.. _issue 49: http://bitbucket.org/ned/coveragepy/issue/49
32+
.. _issue 50: http://bitbucket.org/ned/coveragepy/issue/50
33+
34+
2135
Version 3.3, 24 February 2010
2236
-----------------------------
2337

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@
4747
# built documents.
4848
#
4949
# The short X.Y version.
50-
version = '3.3'
50+
version = '3.3.1'
5151
# The full version, including alpha/beta/rc tags.
52-
release = '3.3'
52+
release = '3.3.1'
5353

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

doc/index.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ coverage.py
1111
:history: 20091127T155100, version 3.2
1212
:history: 20091205T161429, version 3.2 for real.
1313
:history: 20100224T204700, version 3.3
14+
:history: 20100306T181500, version 3.3.1
1415

1516
Coverage.py is a tool for measuring code coverage of Python programs. It
1617
monitors your program, noting which parts of the code have been executed, then
@@ -20,7 +21,7 @@ Coverage measurement is typically used to gauge the effectiveness of tests. It
2021
can show which parts of your product code are being exercised by tests, and
2122
which are not.
2223

23-
The latest version is 3.3, released 24 Februrary 2010.
24+
The latest version is 3.3.1, released 6 March 2010.
2425
It is supported on Python 2.3 through 3.1.
2526

2627

0 commit comments

Comments
 (0)