Skip to content

Commit

Permalink
Prep 0.9 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Dec 31, 2014
1 parent bda0856 commit ebba03a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGES.txt → CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Unreleased
----------
Changes
=======

0.9 (2014-12-30)
----------------

- Work around recording transaction userid containing unicode.
See https://github.com/Pylons/pyramid_tm/pull/15, although the fix
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
except IOError:
README = CHANGES = ''

Expand All @@ -32,7 +32,7 @@
docs_extras = ['Sphinx']

setup(name='pyramid_tm',
version='0.8',
version='0.9',
description=('A package which allows Pyramid requests to join the '
'active transaction'),
long_description=README + '\n\n' + CHANGES,
Expand Down

0 comments on commit ebba03a

Please sign in to comment.