diff --git a/docs/HISTORY.txt b/docs/HISTORY.txt index 5b0d6941..a131da21 100644 --- a/docs/HISTORY.txt +++ b/docs/HISTORY.txt @@ -1,11 +1,21 @@ Changelog ========= -0.4 - Unreleased ----------------- +0.4.1 - Unreleased +------------------ + +0.4.0 - 2008-07-31 +------------------ * Add inline validation support with KSS +* Require zope.component <= 3.4.0 to prevent compatibility issues with + five.localsitemanager, of which a buggy version (0.3) is pinned by + plone.recipe.plone 3.1.4. Upgrade to this version if you're seeing:: + ... + Module five.localsitemanager.registry, line 176, in registeredUtilities + ValueError: too many values to unpack + 0.3.2 - 2008-07-25 ------------------ diff --git a/setup.py b/setup.py index c2a66798..b0773280 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -version = '0.4' +version = '0.4.1' def description(): join = lambda *paths: os.path.join('plone', 'app', 'z3cform', *paths) @@ -41,5 +41,6 @@ def description(): 'kss.core', 'plone.app.kss', 'z3c.formwidget.query', + 'zope.component<=3.4.0', ], )