Skip to content

Commit

Permalink
Prepare for 4.0a4
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Jan 26, 2015
1 parent 9cda91b commit 21bf8b6
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 9 deletions.
12 changes: 12 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ Change history for Coverage.py
------------------------------


Version 4.0a4 --- 25 January 2015
---------------------------------

- Plugins can now provide sys_info for debugging output.

- Started plugins documentation.

- Prepared to move the docs to readthedocs.org.


Version 4.0a3 --- 20 January 2015
---------------------------------

Expand Down Expand Up @@ -45,6 +55,8 @@ Version 4.0a2 --- 14 January 2015
It will probably still work on older versions of PyPy, but I'm not testing
against them.

- Plugins!

- The original command line switches (`-x` to run a program, etc) are no
longer supported.

Expand Down
4 changes: 2 additions & 2 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ history, see the `CHANGES.txt`_ file in the source tree.

.. _changes_40:

Version 4.0a4 pre-release --- ??? 2015
--------------------------------------
Version 4.0a4 pre-release --- 25 January 2015
---------------------------------------------

Backward incompatibilities:

Expand Down
6 changes: 3 additions & 3 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ not.

.. ifconfig:: prerelease

The latest version is coverage.py 4.0a4, released 27 September 2014.
The latest version is coverage.py 4.0a4, released 25 January 2015.
It is supported on Python versions 2.6 through 3.4, PyPy 2.2 through 2.4,
and PyPy3 2.3 and 2.4.
**This is a pre-release build. The usual warnings about possible bugs apply.**
Expand Down Expand Up @@ -105,8 +105,8 @@ Getting started is easy:
`report like this one`_.

.. _coverage page on the Python Package Index: http://pypi.python.org/pypi/coverage
.. _report like this: /code/coverage/sample_html/index.html
.. _report like this one: /code/coverage/sample_html_beta/index.html
.. _report like this: http://nedbatchelder.com/code/coverage/sample_html/index.html
.. _report like this one: http://nedbatchelder.com/code/coverage/sample_html_beta/index.html


Using coverage.py
Expand Down
4 changes: 2 additions & 2 deletions doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ If all went well, you should be able to open a command prompt, and see coverage
installed properly::

$ coverage --version
Coverage.py, version 4.0a1. http://nedbatchelder.com/code/coverage
Coverage.py, version 4.0a4. http://nedbatchelder.com/code/coverage

You can also invoke coverage as a module::

$ python -m coverage --version
Coverage.py, version 4.0a1. http://nedbatchelder.com/code/coverage
Coverage.py, version 4.0a4. http://nedbatchelder.com/code/coverage
5 changes: 3 additions & 2 deletions howto.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@
- Version --version output in doc/install.rst
- Don't forget the man page: doc/python-coverage.1.txt
- Generate new sample_html to get the latest, incl footer version number:
python setup.py develop
pip install -e .
cd ~/cog/trunk
rm -rf htmlcov
coverage run --branch --source=cogapp -m cogapp.test_cogapp CogTestsInMemory
TODO: this isn't right with the new cog
coverage run --branch --source=cogapp -m cogapp.test_cogapp CogTestsInMemory
coverage html
- IF BETA:
cp -r htmlcov/ ~/coverage/trunk/doc/sample_html_beta/
Expand Down

0 comments on commit 21bf8b6

Please sign in to comment.