diff --git a/README.rst b/README.rst index 62d873ac1..718b41c48 100644 --- a/README.rst +++ b/README.rst @@ -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. diff --git a/docs/release_notes/dev.rst b/docs/release_notes/dev.rst index 1281d2cae..8ac649786 100644 --- a/docs/release_notes/dev.rst +++ b/docs/release_notes/dev.rst @@ -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 diff --git a/docs/release_notes/index.rst b/docs/release_notes/index.rst index c58008ac1..c94761396 100644 --- a/docs/release_notes/index.rst +++ b/docs/release_notes/index.rst @@ -5,6 +5,7 @@ Release Notes :maxdepth: 1 dev + v0.13.2 v0.13.1 v0.13.0 v0.12.2 diff --git a/docs/release_notes/v0.13.2.rst b/docs/release_notes/v0.13.2.rst new file mode 100644 index 000000000..c2b7f1ab8 --- /dev/null +++ b/docs/release_notes/v0.13.2.rst @@ -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) diff --git a/tastypie/__init__.py b/tastypie/__init__.py index 730948ef4..63398a108 100644 --- a/tastypie/__init__.py +++ b/tastypie/__init__.py @@ -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:])])