[Checkins] SVN: zc.buildout/trunk/ Updated release information

Jim Fulton jim at zope.com
Tue Sep 5 19:11:03 EDT 2006


Log message for revision 69993:
  Updated release information

Changed:
  U   zc.buildout/trunk/README.txt
  U   zc.buildout/trunk/setup.py
  U   zc.buildout/trunk/zc.recipe.egg_/README.txt
  U   zc.buildout/trunk/zc.recipe.egg_/setup.py
  U   zc.buildout/trunk/zc.recipe.testrunner/README.txt
  U   zc.buildout/trunk/zc.recipe.testrunner/setup.py

-=-
Modified: zc.buildout/trunk/README.txt
===================================================================
--- zc.buildout/trunk/README.txt	2006-09-05 22:55:58 UTC (rev 69992)
+++ zc.buildout/trunk/README.txt	2006-09-05 23:11:02 UTC (rev 69993)
@@ -192,8 +192,19 @@
 1.0.0b3
 -------
 
+- Added a help option (-h, --help)
+
+- Increased the default level of verbosity.
+
+- Buildouts now automatically update themselves to new versions of
+  zc.buildout and setuptools.
+
 - Added Windows support.
 
+- Added a recipe API for generating user errors.
+
+- No-longer generate a py_zc.buildout script.
+
 - Fixed some bugs in variable substitutions.  
 
   The characters "-", "." and " ", weren't allowed in section or
@@ -206,6 +217,14 @@
 
 - Now require a recipe option (and therefore a section) for every part.
 
+- Expanded the easy_install module API to:
+
+  - Allow extra paths to be provided
+
+  - Specify explicit entry points
+
+  - Specify entry-point arguments
+
 1.0.0b2
 -------
 

Modified: zc.buildout/trunk/setup.py
===================================================================
--- zc.buildout/trunk/setup.py	2006-09-05 22:55:58 UTC (rev 69992)
+++ zc.buildout/trunk/setup.py	2006-09-05 23:11:02 UTC (rev 69993)
@@ -3,7 +3,7 @@
 name = "zc.buildout"
 setup(
     name = name,
-    version = "1.0.0b2",
+    version = "1.0.0b3",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "System for managing development buildouts",

Modified: zc.buildout/trunk/zc.recipe.egg_/README.txt
===================================================================
--- zc.buildout/trunk/zc.recipe.egg_/README.txt	2006-09-05 22:55:58 UTC (rev 69992)
+++ zc.buildout/trunk/zc.recipe.egg_/README.txt	2006-09-05 23:11:02 UTC (rev 69993)
@@ -63,6 +63,27 @@
 Added a new recipe for building custom eggs from source distributions,
 specifying custom distutils build_ext options.
 
+1.0.0a3
+-------
+
+- Added Windows support.
+
+- Now-longer implicitly generate "py_" scripts for each egg.  You can
+  now generate a script for launching a Python interpreter or for
+  running scripts based on the eggs defined for an egg part.
+
+- You can now specify custom entry points for packages that don't
+  declare their entry points.
+
+- You can now specify extra-paths to be included in generated scripts.
+
+
+1.0.0a2
+-------
+
+Added a custom recipe for building custom eggs using custom distrutils
+build_ext arguments.
+
 1.0.0a1
 -------
 

Modified: zc.buildout/trunk/zc.recipe.egg_/setup.py
===================================================================
--- zc.buildout/trunk/zc.recipe.egg_/setup.py	2006-09-05 22:55:58 UTC (rev 69992)
+++ zc.buildout/trunk/zc.recipe.egg_/setup.py	2006-09-05 23:11:02 UTC (rev 69993)
@@ -3,7 +3,7 @@
 name = "zc.recipe.egg"
 setup(
     name = name,
-    version = "1.0.0a2",
+    version = "1.0.0a3",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "Recipe for installing Python package distributions as eggs",
@@ -16,7 +16,7 @@
     include_package_data = True,
     package_dir = {'':'src'},
     namespace_packages = ['zc', 'zc.recipe'],
-    install_requires = ['zc.buildout', 'setuptools'],
+    install_requires = ['zc.buildout >=1.1.0b3', 'setuptools'],
     tests_require = ['zope.testing'],
     test_suite = name+'.tests.test_suite',
     entry_points = {'zc.buildout': ['default = %s:Egg' % name,

Modified: zc.buildout/trunk/zc.recipe.testrunner/README.txt
===================================================================
--- zc.buildout/trunk/zc.recipe.testrunner/README.txt	2006-09-05 22:55:58 UTC (rev 69992)
+++ zc.buildout/trunk/zc.recipe.testrunner/README.txt	2006-09-05 23:11:02 UTC (rev 69993)
@@ -24,3 +24,20 @@
 - Support specifying testrunner defaults (e.g. verbosity, test file 
   patterns, etc.)
 
+
+
+Change History
+==============
+
+1.0.0a2
+-------
+
+Now provide a extra-paths option for including extra paths in test
+scripts. This is useful when eggs depend on Python packages not
+packaged as eggs.
+
+
+1.0.0a1
+-------
+
+Initial public version

Modified: zc.buildout/trunk/zc.recipe.testrunner/setup.py
===================================================================
--- zc.buildout/trunk/zc.recipe.testrunner/setup.py	2006-09-05 22:55:58 UTC (rev 69992)
+++ zc.buildout/trunk/zc.recipe.testrunner/setup.py	2006-09-05 23:11:02 UTC (rev 69993)
@@ -3,7 +3,7 @@
 name = "zc.recipe.testrunner"
 setup(
     name = name,
-    version = "1.0.0a1",
+    version = "1.0.0a2",
     author = "Jim Fulton",
     author_email = "jim at zope.com",
     description = "ZC Buildout recipe for creating test runners",
@@ -16,8 +16,8 @@
     include_package_data = True,
     package_dir = {'':'src'},
     namespace_packages = ['zc', 'zc.recipe'],
-    install_requires = ['zc.buildout', 'zope.testing', 'setuptools',
-                        'zc.recipe.egg',
+    install_requires = ['zc.buildout  >=1.1.0b3', 'zope.testing', 'setuptools',
+                        'zc.recipe.egg  >=1.1.0a3',
                         ],
     test_suite = name+'.tests.test_suite',
     entry_points = {'zc.buildout': ['default = %s:TestRunner' % name]},



More information about the Checkins mailing list