Skip to content

Commit

Permalink
Updating for v0.13.3 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanHayes committed Feb 17, 2016
1 parent 73425c3 commit a71dd6e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 3 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.2) but being used actively in production on several
Currently in beta (v0.13.3) but being used actively in production on several
sites.


Expand Down
2 changes: 1 addition & 1 deletion docs/release_notes/dev.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ copied to the release notes for the next release.
Bugfixes
--------

* Permit changing existing value on a ToOneField to None. (Closes #1449)
* list of changes
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.3
v0.13.2
v0.13.1
v0.13.0
Expand Down
9 changes: 9 additions & 0 deletions docs/release_notes/v0.13.3.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
v0.13.3
=======

:date: 2016-02-17

Bugfixes
--------

* Permit changing existing value on a ToOneField to None. (Closes #1449)
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, 2)
VERSION = (0, 13, 3)

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

0 comments on commit a71dd6e

Please sign in to comment.