diff options
| author | Chris McDonough <chrism@plope.com> | 2014-02-08 16:27:42 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2014-02-08 16:27:42 -0500 |
| commit | d7b647d27ebde9bc8203629b651e69d6e7ac7c38 (patch) | |
| tree | 2751bf786a1a81bea251ccc818224bf1560f52c3 | |
| parent | f8ebde9e5ba1719737099cef12aad641a39120d9 (diff) | |
| download | pyramid-d7b647d27ebde9bc8203629b651e69d6e7ac7c38.tar.gz pyramid-d7b647d27ebde9bc8203629b651e69d6e7ac7c38.tar.bz2 pyramid-d7b647d27ebde9bc8203629b651e69d6e7ac7c38.zip | |
prep for 1.5b1
| -rw-r--r-- | CHANGES.txt | 4 | ||||
| -rw-r--r-- | docs/whatsnew-1.5.rst | 5 | ||||
| -rw-r--r-- | setup.py | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index ed70d7036..cefb2318d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,5 @@ -Next release -============ +1.5b1 (2014-02-08) +================== Features -------- diff --git a/docs/whatsnew-1.5.rst b/docs/whatsnew-1.5.rst index 9b32b42a9..2f73af661 100644 --- a/docs/whatsnew-1.5.rst +++ b/docs/whatsnew-1.5.rst @@ -360,6 +360,11 @@ The feature additions in Pyramid 1.5 follow. timeouts, and conformance with the ``ISession`` API. See https://github.com/Pylons/pyramid/pull/1142 +- We no longer eagerly clear ``request.exception`` and ``request.exc_info`` in + the exception view tween. This makes it possible to inspect exception + information within a finished callback. See + https://github.com/Pylons/pyramid/issues/1223. + Other Backwards Incompatibilities --------------------------------- @@ -68,7 +68,7 @@ testing_extras = tests_require + [ ] setup(name='pyramid', - version='1.5a4', + version='1.5b1', description='The Pyramid Web Framework, a Pylons project', long_description=README + '\n\n' + CHANGES, classifiers=[ |
