Skip to content

Commit

Permalink
Version bump for v0.13.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanHayes committed Jan 25, 2016
1 parent 755e6b8 commit f6ed7d5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ django-tastypie

Creating delicious APIs for Django apps since 2010.

Currently in beta (v0.13.0) but being used actively in production on several
Currently in beta (v0.13.1) but being used actively in production on several
sites.


Expand Down
7 changes: 2 additions & 5 deletions docs/release_notes/dev.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
dev
=======
===

The current in-progress version. Put your notes here so they can be easily
copied to the release notes for the next release.

Bugfixes
--------

* Prevent muting non-tastypie's exceptions (#1297, PR #1404)
* Gracefully handle UnsupportFormat exception (#1154, PR #1417)
* Add related schema urls (#782, PR #1309)
* Repr value must be str in Py2 (#1421, PR #1422)
* list of changes here
1 change: 1 addition & 0 deletions docs/release_notes/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Release Notes
:maxdepth: 1

dev
v0.13.1
v0.13.0
v0.12.2
v0.12.1
Expand Down
13 changes: 13 additions & 0 deletions docs/release_notes/v0.13.1.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
v0.13.1
=======

:date: 2016-01-25

Bugfixes
--------

* Prevent muting non-tastypie's exceptions (#1297, PR #1404)
* Gracefully handle UnsupportFormat exception (#1154, PR #1417)
* Add related schema urls (#782, PR #1309)
* Repr value must be str in Py2 (#1421, PR #1422)
* Fixed assertHttpAccepted (PR #1416)
2 changes: 1 addition & 1 deletion tastypie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__author__ = 'Daniel Lindsley & the Tastypie core team'

VERSION = (0, 13, 0)
VERSION = (0, 13, 1)

__short_version__ = '.'.join(map(str, VERSION[0:2]))
__version__ = ''.join(['.'.join(map(str, VERSION[0:3])), ''.join(VERSION[3:])])

0 comments on commit f6ed7d5

Please sign in to comment.