diff --git a/CHANGES.rst b/CHANGES.rst index 5c755cd..a6c8c65 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,8 @@ Change Log ========== -0.3.2 (2014-03-11) ------------------- +0.3.2.post1 (2014-03-11) +------------------------ - Only apply declaratively defined settings to the outer Sequence when mapping an SQLAlchemy relationship. Previously, overrides were applied @@ -10,10 +10,10 @@ Change Log [davidjb] - The order in which fields are added are now properly maintained (`issue #45 - `_) + `_) [uralbash] - Added ability to override fields on their own (PR - `#69 `_, + `#69 `_, `#70 `_) [uralbash] - Allow setting ColanderAlchemy options in sqlalchemy type. [pieterproigia] @@ -31,23 +31,23 @@ Change Log not given [tisdall] - added tests for confirming documentation examples [tisdall] - added fix and test for `issue #35 - `_ + `_ (thrown exception on encountering synonym() ) [tisdall] - made changes to accommodate SQLAlchemy >= 0.9a [tisdall] - allows "children" override - (`issue #35 + (`issue #44 `_) [tisdall] - no longer call callable SQLAlchemy defaults to fill in colander default values (`issue #43 - `_) [tisdall] - fixed some minor issues with colander default and missing values to ensure transitive relationships (such as dictify/objectify) [tisdall] - require colander 1.0b1 or greater to support `colander.drop` (`issue #52 - `_) [tisdall] 0.3 (2013-11-04) diff --git a/docs/source/conf.py b/docs/source/conf.py index fb8981c..277fef3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.3.2' +release = '0.3.2.post1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 277d756..91a36e7 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ import sys from setuptools import setup, find_packages -version = '0.3.2' +version = '0.3.2.post1' here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.rst')).read()