Commit 1a36fdba authored by Michael Howitz's avatar Michael Howitz

bring in shape

parent 05a4ca64
...@@ -2,6 +2,12 @@ ...@@ -2,6 +2,12 @@
CHANGES CHANGES
======= =======
3.11.2 (unreleased)
-------------------
- ...
3.11.1 (2010-04-30) 3.11.1 (2010-04-30)
------------------- -------------------
...@@ -55,7 +61,7 @@ CHANGES ...@@ -55,7 +61,7 @@ CHANGES
- Previous releases should be versioned 3.9.0 as they are not pure bugfix - Previous releases should be versioned 3.9.0 as they are not pure bugfix
releases and worth a "feature" release, increasing feature version. releases and worth a "feature" release, increasing feature version.
Packages that depend on any changes introduced in version 3.8.2 or 3.8.3 Packages that depend on any changes introduced in version 3.8.2 or 3.8.3
should depend on version 3.9 or greater. should depend on version 3.9 or greater.
...@@ -115,7 +121,7 @@ CHANGES ...@@ -115,7 +121,7 @@ CHANGES
3.7.2 (2009-03-12) 3.7.2 (2009-03-12)
------------------ ------------------
- Fix: added missing ComponentLookupError, missing since revision 95429 and - Fix: added missing ComponentLookupError, missing since revision 95429 and
missing in last release. missing in last release.
- Adapt to the move of IDefaultViewName from zope.component.interfaces - Adapt to the move of IDefaultViewName from zope.component.interfaces
......
...@@ -16,18 +16,18 @@ ...@@ -16,18 +16,18 @@
# When developing and releasing this package, please follow the documented # When developing and releasing this package, please follow the documented
# Zope Toolkit policies as described by this documentation. # Zope Toolkit policies as described by this documentation.
############################################################################## ##############################################################################
"""Setup for zope.container package """Setup for zope.container package"""
$Id$
"""
import os import os
from setuptools import setup, find_packages, Extension from setuptools import setup, find_packages, Extension
def read(*rnames): def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read() return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(name='zope.container', setup(name='zope.container',
version = '3.11.1', version = '3.11.2dev',
author='Zope Corporation and Contributors', author='Zope Corporation and Contributors',
author_email='zope-dev@zope.org', author_email='zope-dev@zope.org',
description='Zope Container', description='Zope Container',
......
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