Skip to content

Commit

Permalink
Updating for v0.13.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanHayes committed Feb 15, 2016
1 parent 171a320 commit 779fe7d
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 21 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.1) but being used actively in production on several
Currently in beta (v0.13.2) but being used actively in production on several
sites.


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

* Fix in `Resource.save_related`: `related_obj` can be empty in patch requests (introduced in #1378). (Fixes #1436)
* Fixed bug that prevented fitlering on related resources. `apply_filters` hook now used in obj_get. (Fixes #1435, Fixes #1443)
* Use `build_filters` in `obj_get`. (Fixes #1444)
* Updated DjangoAuthorization to disallow read unless a user has `change` permission. (#1407, PR #1409)
* Authorization classes now handle usernames containing spaces. Closes #966.
* Cleaned up old, unneeded code. (closes PR #1433)
* Reuse Django test `Client.patch()`. (@SeanHayes, closes #1442)
* Just a typo fix in the testing docs (by @bezidejni, closes #810)
* Removed references to patterns() (by @SeanHayes, closes #1437)
* Removed deprecated methods `Resource.apply_authorization_limits` and `Authorization.apply_limits` from code and documentation. (by @SeanHayes, closes #1383, #1045, #1284, #837)
* Updates docs/cookbook.rst to make sure it's clear which `url` to import. (by @yuvadm, closes #716)
* Updated docs/tutorial.rst. Without "null=True, blank=True" parameters in Slugfield, expecting "automatic slug generation" in save method is pointless. (by @orges, closes #753)
* Cleaned up Riak docs. (by @SeanHayes, closes #275)
* Include import statement for trailing_slash. (by @ljosa, closes #770)
* Fix docs: `Meta.filtering` is actually a dict. (by @georgedorn, closes #807)
* Fix load data command. (by @blite, closes #357, #358)
* Related schemas no longer raise error when not URL accessible. (Fixes PR #1439)
* Avoid modifying Field instances during request/response cycle. (closes #1415)
* Removing the Manager dependency in ToManyField.dehydrate(). (Closes #537)
* list of issues/PRs
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.2
v0.13.1
v0.13.0
v0.12.2
Expand Down
27 changes: 27 additions & 0 deletions docs/release_notes/v0.13.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
v0.13.2
=======

:date: 2016-02-14

Bugfixes
--------

* Fix in `Resource.save_related`: `related_obj` can be empty in patch requests (introduced in #1378). (Fixes #1436)
* Fixed bug that prevented fitlering on related resources. `apply_filters` hook now used in obj_get. (Fixes #1435, Fixes #1443)
* Use `build_filters` in `obj_get`. (Fixes #1444)
* Updated DjangoAuthorization to disallow read unless a user has `change` permission. (#1407, PR #1409)
* Authorization classes now handle usernames containing spaces. Closes #966.
* Cleaned up old, unneeded code. (closes PR #1433)
* Reuse Django test `Client.patch()`. (@SeanHayes, closes #1442)
* Just a typo fix in the testing docs (by @bezidejni, closes #810)
* Removed references to patterns() (by @SeanHayes, closes #1437)
* Removed deprecated methods `Resource.apply_authorization_limits` and `Authorization.apply_limits` from code and documentation. (by @SeanHayes, closes #1383, #1045, #1284, #837)
* Updates docs/cookbook.rst to make sure it's clear which `url` to import. (by @yuvadm, closes #716)
* Updated docs/tutorial.rst. Without "null=True, blank=True" parameters in Slugfield, expecting "automatic slug generation" in save method is pointless. (by @orges, closes #753)
* Cleaned up Riak docs. (by @SeanHayes, closes #275)
* Include import statement for trailing_slash. (by @ljosa, closes #770)
* Fix docs: `Meta.filtering` is actually a dict. (by @georgedorn, closes #807)
* Fix load data command. (by @blite, closes #357, #358)
* Related schemas no longer raise error when not URL accessible. (Fixes PR #1439)
* Avoid modifying Field instances during request/response cycle. (closes #1415)
* Removing the Manager dependency in ToManyField.dehydrate(). (Closes #537)
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, 1)
VERSION = (0, 13, 2)

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

0 comments on commit 779fe7d

Please sign in to comment.