[Checkins] SVN: gocept.selenium/trunk/ Preparing release 0.13.2

Michael Howitz cvs-admin at zope.org
Thu Mar 15 20:48:57 UTC 2012


Log message for revision 124631:
  Preparing release 0.13.2

Changed:
  U   gocept.selenium/trunk/CHANGES.txt
  U   gocept.selenium/trunk/setup.py
  U   gocept.selenium/trunk/src/gocept/selenium/wsgi/__init__.py

-=-
Modified: gocept.selenium/trunk/CHANGES.txt
===================================================================
--- gocept.selenium/trunk/CHANGES.txt	2012-03-15 20:41:12 UTC (rev 124630)
+++ gocept.selenium/trunk/CHANGES.txt	2012-03-15 20:48:54 UTC (rev 124631)
@@ -1,10 +1,11 @@
 Changes
 =======
 
-0.13.2 (unreleased)
+0.13.2 (2012-03-15)
 -------------------
 
-- Nothing changed yet.
+- Fixed WSGI flavor: There was a ``RuntimeError`` in tear down if the WSGI
+  server was shut down correctly.
 
 
 0.13.1 (2012-03-15)

Modified: gocept.selenium/trunk/setup.py
===================================================================
--- gocept.selenium/trunk/setup.py	2012-03-15 20:41:12 UTC (rev 124630)
+++ gocept.selenium/trunk/setup.py	2012-03-15 20:48:54 UTC (rev 124631)
@@ -26,7 +26,7 @@
 
 setup(
     name='gocept.selenium',
-    version='0.13.2dev',
+    version='0.13.2',
     author='Zope Foundation and Contributors',
     author_email='ws at gocept.com',
     url='http://packages.python.org/gocept.selenium',

Modified: gocept.selenium/trunk/src/gocept/selenium/wsgi/__init__.py
===================================================================
--- gocept.selenium/trunk/src/gocept/selenium/wsgi/__init__.py	2012-03-15 20:41:12 UTC (rev 124630)
+++ gocept.selenium/trunk/src/gocept/selenium/wsgi/__init__.py	2012-03-15 20:48:54 UTC (rev 124631)
@@ -55,7 +55,7 @@
     def tearDown(self):
         self.http.shutdown()
         self.thread.join(5)
-        if not self.thread.isAlive():
+        if self.thread.isAlive():
             raise RuntimeError('WSGI server could not be shut down')
         # Make the server really go away and give up the socket:
         self.http = None



More information about the checkins mailing list