Skip to content

Commit

Permalink
fixed RST parsing issues and bugs with links
Browse files Browse the repository at this point in the history
  • Loading branch information
tisdall committed Mar 12, 2015
1 parent 282c3e6 commit 3b7bdb1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
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
to both the Sequence and Mapping nodes, leading to unexpected behaviour.
[davidjb]
- The order in which fields are added are now properly maintained
(`issue #45
<https://github.com/stefanofontanelli/ColanderAlchemy/issues/41>`_)
<https://github.com/stefanofontanelli/ColanderAlchemy/issues/45>`_)
[uralbash]
- Added ability to override fields on their own (PR
`#69 <https://github.com/stefanofontanelli/ColanderAlchemy/pull/41>`_,
`#69 <https://github.com/stefanofontanelli/ColanderAlchemy/pull/69>`_,
`#70 <https://github.com/stefanofontanelli/ColanderAlchemy/pull/70>`_)
[uralbash]
- Allow setting ColanderAlchemy options in sqlalchemy type. [pieterproigia]
Expand All @@ -31,23 +31,23 @@ Change Log
not given [tisdall]
- added tests for confirming documentation examples [tisdall]
- added fix and test for `issue #35
<https://github.com/stefanofontanelli/ColanderAlchemy/issues/31>`_
<https://github.com/stefanofontanelli/ColanderAlchemy/issues/35>`_
(thrown exception on encountering synonym() ) [tisdall]
- made changes to accommodate SQLAlchemy >= 0.9a [tisdall]
- allows "children" override
(`issue #35
(`issue #44
<https://github.com/stefanofontanelli/ColanderAlchemy/issues/44>`_)
[tisdall]
- no longer call callable SQLAlchemy defaults to fill in
colander default values (`issue #43
<https://github.com/stefanofontanelli/ColanderAlchemy/issues/43`_)
<https://github.com/stefanofontanelli/ColanderAlchemy/issues/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
<https://github.com/stefanofontanelli/ColanderAlchemy/issues/52`_)
<https://github.com/stefanofontanelli/ColanderAlchemy/issues/52>`_)
[tisdall]

0.3 (2013-11-04)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 3b7bdb1

Please sign in to comment.