[py-svn] r52719 - py/branch/bugfix-0.9.0/py/doc

guido at codespeak.net guido at codespeak.net
Wed Mar 19 14:31:32 CET 2008


Author: guido
Date: Wed Mar 19 14:31:28 2008
New Revision: 52719

Added:
   py/branch/bugfix-0.9.0/py/doc/changes-0.9.1.txt
   py/branch/bugfix-0.9.0/py/doc/release-0.9.1.txt
Log:
Added release message and changes file.


Added: py/branch/bugfix-0.9.0/py/doc/changes-0.9.1.txt
==============================================================================
--- (empty file)
+++ py/branch/bugfix-0.9.0/py/doc/changes-0.9.1.txt	Wed Mar 19 14:31:28 2008
@@ -0,0 +1,53 @@
+Changes between 0.9.0 and 0.9.1
+===============================
+
+This is a fairly complete list of changes between 0.9 and 0.9.1, which can
+serve as a reference for developers.
+
+* allowing + signs in py.path.svn urls [39106]
+* fixed support for Failed exceptions without excinfo in py.test [39340]
+* added support for killing processes for Windows (as well as platforms that
+  support os.kill) in py.misc.killproc [39655]
+* added setup/teardown for generative tests to py.test [40702]
+* added detection of FAILED TO LOAD MODULE to py.test [40703, 40738, 40739]
+* fixed problem with calling .remove() on wcpaths of non-versioned files in
+  py.path [44248]
+* fixed some import and inheritance issues in py.test [41480, 44648, 44655]
+* fail to run greenlet tests when pypy is available, but without stackless
+  [45294]
+* small fixes in rsession tests [45295]
+* fixed issue with 2.5 type representations in py.test [45483, 45484]
+* made that internal reporting issues displaying is done atomically in py.test
+  [45518]
+* made that non-existing files are igored by the py.lookup script [45519]
+* improved exception name creation in py.test [45535]
+* made that less threads are used in execnet [merge in 45539]
+* removed lock required for atomical reporting issue displaying in py.test
+  [45545]
+* removed globals from execnet [45541, 45547]
+* refactored cleanup mechanics, made that setDaemon is set to 1 to make atexit
+  get called in 2.5 (py.execnet) [45548]
+* fixed bug in joining threads in py.execnet's servemain [45549]
+* refactored py.test.rsession tests to not rely on exact output format anymore
+  [45646]
+* using repr() on test outcome [45647]
+* added 'Reason' classes for py.test.skip() [45648, 45649]
+* killed some unnecessary sanity check in py.test.collect [45655]
+* avoid using os.tmpfile() in py.io.fdcapture because on Windows it's only
+  usable by Administrators [45901]
+* added support for locking and non-recursive commits to py.path.svnwc [45994]
+* locking files in py.execnet to prevent CPython from segfaulting [46010]
+* added export() method to py.path.svnurl
+* fixed -d -x in py.test [47277]
+* fixed argument concatenation problem in py.path.svnwc [49423]
+* restore py.test behaviour that it exits with code 1 when there are failures
+  [49974]
+* don't fail on html files that don't have an accompanying .txt file [50606]
+* fixed 'utestconvert.py < input' [50645]
+* small fix for code indentation in py.code.source [50755]
+* fix _docgen.py documentation building [51285]
+* improved checks for source representation of code blocks in py.test [51292]
+* added support for passing authentication to py.path.svn* objects [52000,
+  52001]
+* removed sorted() call for py.apigen tests in favour of [].sort() to support
+  Python 2.3 [52481]

Added: py/branch/bugfix-0.9.0/py/doc/release-0.9.1.txt
==============================================================================
--- (empty file)
+++ py/branch/bugfix-0.9.0/py/doc/release-0.9.1.txt	Wed Mar 19 14:31:28 2008
@@ -0,0 +1,33 @@
+py lib 0.9.1: bugfix release
+=============================
+
+Welcome to the 0.9.1 py lib release - a library aiming to 
+support agile and test-driven python development on various levels.
+
+This is mostly a bugfix release, with a couple of new features sneaked in.
+Most important changes:
+
+* reduced the number of threads used in py.execnet
+* some new functionality (authentication, export, locking) in py.path's
+  Subversion APIs
+* stability and segfault fixes in execnet
+* numerous small fixes in py.test's rsession (experimental pluggable session)
+  and generative test features
+* some fixes in the py.test core
+* added py.misc.killproc, which allows killing processes on (some flavours of)
+  Windows and UNIX
+
+For a complete list of changes, see doc/changes-0.9.1.txt in the source
+package.
+
+Download/Install:   http://codespeak.net/py/0.9.1/download.html
+Documentation/API:  http://codespeak.net/py/0.9.1/index.html
+
+Work on the py lib has been partially funded by the 
+European Union IST programme and by http://merlinux.de 
+within the PyPy project.
+
+best, have fun and let us know what you think!
+
+holger krekel, Maciej Fijalkowski, 
+Carl Friedrich Bolz, Guido Wesdorp



More information about the pytest-commit mailing list