Skip to content

Commit f3328b5

Browse files
committed
Bumped to v1.4.0!
1 parent 83443e3 commit f3328b5

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
# built documents.
5454
#
5555
# The short X.Y version.
56-
version = '1.3.1'
56+
version = '1.4.0'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '1.3.1-dev'
58+
release = '1.4.0'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ Release Notes
7474
.. toctree::
7575
:maxdepth: 1
7676

77+
releasenotes/v1.4.0
7778
releasenotes/v1.3.0
7879
releasenotes/v1.2.0
7980
releasenotes/v1.1.0

docs/releasenotes/v1.4.0.rst

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
restless v1.4.0
2+
===============
3+
4+
:date: 2014-02-20
5+
6+
This release improves the way errors are handled (serialized tracebacks in
7+
debug), making them more consistent. It also improves Django's support for
8+
``ObjectDoesNotExist/Http404`` & switched to using ``py.test`` for testing.
9+
10+
11+
Features
12+
--------
13+
14+
* Better not-found behavior in Django. (SHA: 7cd2cfc)
15+
* Improved ``Http404`` behavior in Django. (SHA: 44b2e5f)
16+
* Switched to ``py.test``. (SHA: 30534a7)
17+
* Better error handling support. (SHA: ae5a9cb)
18+
19+
20+
Bugfixes
21+
--------
22+
23+
* Skips Itty's tests if it is not available. (SHA: b4e859b)

restless/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = 'Daniel Lindsley'
22
__license__ = 'BSD'
3-
__version__ = (1, 3, 1, 'dev')
3+
__version__ = (1, 4, 0)
44

55

66
from .resources import Resource

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='restless',
8-
version='1.3.1-dev',
8+
version='1.4.0',
99
description='A lightweight REST miniframework for Python.',
1010
author='Daniel Lindsley',
1111
author_email='daniel@toastdriven.com',

0 commit comments

Comments
 (0)