[Checkins] SVN: five.localsitemanager/tags/0.1.2/ Create a new 0.1.2 release from the 0.1.1 tag, which sets the zip-safe-flag to false.

Hanno Schlichting plone at hannosch.info
Sat Jun 23 08:11:45 EDT 2007


Log message for revision 76982:
  Create a new 0.1.2 release from the 0.1.1 tag, which sets the zip-safe-flag to false.
  

Changed:
  A   five.localsitemanager/tags/0.1.2/
  U   five.localsitemanager/tags/0.1.2/CHANGES.txt
  U   five.localsitemanager/tags/0.1.2/setup.py

-=-
Copied: five.localsitemanager/tags/0.1.2 (from rev 76981, five.localsitemanager/tags/release-0.1.1)

Modified: five.localsitemanager/tags/0.1.2/CHANGES.txt
===================================================================
--- five.localsitemanager/tags/release-0.1.1/CHANGES.txt	2007-06-23 11:25:45 UTC (rev 76981)
+++ five.localsitemanager/tags/0.1.2/CHANGES.txt	2007-06-23 12:11:44 UTC (rev 76982)
@@ -2,9 +2,14 @@
 CHANGES
 =======
 
-five.localsitemanager 0.1.1 (unreleased)
+five.localsitemanager 0.1.2 (2007-06-23)
 ========================================
 
+* Corrected the zip-safe flag to be False.
+
+five.localsitemanager 0.1.1 (2007-03-05)
+========================================
+
 * Fixed aq wrapping when looking up a utility that is actually the component
   registry's parent (the ISite).
 

Modified: five.localsitemanager/tags/0.1.2/setup.py
===================================================================
--- five.localsitemanager/tags/release-0.1.1/setup.py	2007-06-23 11:25:45 UTC (rev 76981)
+++ five.localsitemanager/tags/0.1.2/setup.py	2007-06-23 12:11:44 UTC (rev 76982)
@@ -5,7 +5,7 @@
 import os
 from setuptools import setup, Extension
 
-version = '0.1.1'
+version = '0.1.2'
 
 setup(name='five.localsitemanager',
       version=version,
@@ -36,6 +36,5 @@
       package_dir = {'': 'src'},
       namespace_packages=['five',],
       include_package_data = True,
-
-      zip_safe = True,
+      zip_safe = False,
       )



More information about the Checkins mailing list