[py-svn] commit/pytest: hpk42: up version, commit 2.0.1 annoucnement as sent out

Bitbucket commits-noreply at bitbucket.org
Mon Feb 7 11:54:17 CET 2011


1 new changeset in pytest:

http://bitbucket.org/hpk42/pytest/changeset/0447ba0ab8e3/
changeset:   r2155:0447ba0ab8e3
user:        hpk42
date:        2011-02-07 11:54:08
summary:     up version, commit 2.0.1 annoucnement as sent out
affected #:  4 files (280 bytes)

--- a/doc/Makefile	Mon Feb 07 11:45:47 2011 +0100
+++ b/doc/Makefile	Mon Feb 07 11:54:08 2011 +0100
@@ -40,7 +40,7 @@
 	-rm -rf $(BUILDDIR)/*
 
 install: clean html
-	rsync -avz _build/html/ code:www-pytest/
+	rsync -avz _build/html/ code:www-pytest/2.0.2dev
 
 html:
 	$(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html


--- a/doc/announce/release-2.0.1.txt	Mon Feb 07 11:45:47 2011 +0100
+++ b/doc/announce/release-2.0.1.txt	Mon Feb 07 11:54:08 2011 +0100
@@ -1,19 +1,15 @@
 py.test 2.0.1: bug fixes
 ===========================================================================
 
-Welcome to pytest-2.0.1, a maintenance and bug fix release. For detailed
-changes see below.  pytest is a mature testing tool for Python,
-supporting CPython 2.4-3.2, Jython and latest PyPy interpreters. See
-docs here implementation.  See docs with examples here:
+Welcome to pytest-2.0.1, a maintenance and bug fix release of pytest,
+a mature testing tool for Python, supporting CPython 2.4-3.2, Jython
+and latest PyPy interpreters.  See extensive docs with tested examples here:
 
     http://pytest.org/
 
-A note on packaging: pytest used to part of the "py" distribution up
-until version py-1.3.4 but this has changed now:  pytest-2.0.X only
-contains py.test related code and is expected to be backward-compatible
-to existing test code. If you want to install pytest, just type one of::
+If you want to install or upgrade pytest, just type one of::
 
-    pip install -U pytest
+    pip install -U pytest # or
     easy_install -U pytest
 
 Many thanks to all issue reporters and people asking questions or
@@ -23,7 +19,6 @@
 best,
 holger krekel
 
-
 Changes between 2.0.0 and 2.0.1
 ----------------------------------------------
 


--- a/pytest.py	Mon Feb 07 11:45:47 2011 +0100
+++ b/pytest.py	Mon Feb 07 11:54:08 2011 +0100
@@ -1,7 +1,7 @@
 """
 unit and functional testing with Python.
 """
-__version__ = '2.0.1'
+__version__ = '2.0.2.dev0'
 __all__ = ['main']
 
 from _pytest.core import main, UsageError, _preloadplugins


--- a/setup.py	Mon Feb 07 11:45:47 2011 +0100
+++ b/setup.py	Mon Feb 07 11:54:08 2011 +0100
@@ -22,7 +22,7 @@
         name='pytest',
         description='py.test: simple powerful testing with Python',
         long_description = long_description,
-        version='2.0.1',
+        version='2.0.2.dev0',
         url='http://pytest.org',
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
@@ -67,4 +67,4 @@
     return {'console_scripts': l}
 
 if __name__ == '__main__':
-    main()
+    main()
\ No newline at end of file

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.



More information about the pytest-commit mailing list