Commit 9fc656e4 authored by Jim Fulton's avatar Jim Fulton

Updated release information

parent 3e90ec6e
......@@ -192,8 +192,19 @@ Change History
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 @@ Change History
- 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
-------
......
......@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
name = "zc.buildout"
setup(
name = name,
version = "1.0.0b2",
version = "1.0.0b3",
author = "Jim Fulton",
author_email = "jim@zope.com",
description = "System for managing development buildouts",
......
......@@ -63,6 +63,27 @@ Change History
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
-------
......
......@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
name = "zc.recipe.egg"
setup(
name = name,
version = "1.0.0a2",
version = "1.0.0a3",
author = "Jim Fulton",
author_email = "jim@zope.com",
description = "Recipe for installing Python package distributions as eggs",
......@@ -16,7 +16,7 @@ setup(
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,
......
......@@ -24,3 +24,20 @@ To do
- 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
......@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
name = "zc.recipe.testrunner"
setup(
name = name,
version = "1.0.0a1",
version = "1.0.0a2",
author = "Jim Fulton",
author_email = "jim@zope.com",
description = "ZC Buildout recipe for creating test runners",
......@@ -16,8 +16,8 @@ setup(
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]},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment