Commit 70e05fad authored by Hanno Schlichting's avatar Hanno Schlichting

Prepare release

parent 683054c1
Changelog
=========
2.12.1 - 2009-04-15
-------------------
- Update for iteration proxying: The proxy for `__iter__` must not rely on the
object to have an `__iter__` itself, but also support fall-back iteration via
`__getitem__` (this fixes https://bugs.launchpad.net/zope2/+bug/360761).
2.12 - 2009-01-25
-----------------
- Release as separate package.
......@@ -17,7 +17,7 @@ import os
from setuptools import setup, find_packages, Extension
setup(name='Acquisition',
version = '2.12.0dev',
version = '2.12.1',
url='http://pypi.python.org/pypi/Acquisition',
license='ZPL 2.1',
description="Acquisition is a mechanism that allows objects to obtain "
......@@ -25,7 +25,8 @@ setup(name='Acquisition',
author='Zope Corporation and Contributors',
author_email='zope-dev@zope.org',
long_description=open(
os.path.join('src', 'Acquisition', 'README.txt')).read(),
os.path.join('src', 'Acquisition', 'README.txt')).read() + '\n' +
open('CHANGES.txt').read(),
packages=find_packages('src'),
package_dir={'': 'src'},
......
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