File tree Expand file tree Collapse file tree 4 files changed +20
-5
lines changed Expand file tree Collapse file tree 4 files changed +20
-5
lines changed Original file line number Diff line number Diff line change 2
2
Change history for Coverage.py
3
3
------------------------------
4
4
5
- Version 3.3.1
6
- -------------
5
+ Version 3.3.1, 6 March 2010
6
+ ---------------------------
7
7
8
8
- Using `parallel=True` in .coveragerc file prevented reporting, but now does
9
9
not, fixing `issue 49`.
Original file line number Diff line number Diff line change @@ -11,13 +11,27 @@ Major change history for coverage.py
11
11
:history: 20091128T072200, changes for 3.2
12
12
:history: 20091205T161525, 3.2 final
13
13
:history: 20100221T151900, changes for 3.3
14
+ :history: 20100306T181400, changes for 3.3.1
14
15
15
16
These are the major changes for coverage.py. For a more complete change
16
17
history, see the `CHANGES.txt `_ file in the source tree.
17
18
18
19
.. _CHANGES.txt : http://bitbucket.org/ned/coveragepy/src/tip/CHANGES.txt
19
20
20
21
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
+
21
35
Version 3.3, 24 February 2010
22
36
-----------------------------
23
37
Original file line number Diff line number Diff line change 47
47
# built documents.
48
48
#
49
49
# The short X.Y version.
50
- version = '3.3'
50
+ version = '3.3.1 '
51
51
# The full version, including alpha/beta/rc tags.
52
- release = '3.3'
52
+ release = '3.3.1 '
53
53
54
54
# The language for content autogenerated by Sphinx. Refer to documentation
55
55
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ coverage.py
11
11
:history: 20091127T155100, version 3.2
12
12
:history: 20091205T161429, version 3.2 for real.
13
13
:history: 20100224T204700, version 3.3
14
+ :history: 20100306T181500, version 3.3.1
14
15
15
16
Coverage.py is a tool for measuring code coverage of Python programs. It
16
17
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
20
21
can show which parts of your product code are being exercised by tests, and
21
22
which are not.
22
23
23
- The latest version is 3.3, released 24 Februrary 2010.
24
+ The latest version is 3.3.1 , released 6 March 2010.
24
25
It is supported on Python 2.3 through 3.1.
25
26
26
27
You can’t perform that action at this time.
0 commit comments