Skip to content

Commit

Permalink
0.5.3 version bump and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
zeraien committed Aug 21, 2020
1 parent 763031a commit 038b2f2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
## [Unreleased]
- use of `inflection` library will be the default after 2021

## [0.5.3] - 2020-08-21
### Functionality change `_before_filter`
- When returning a `dict` from `_before_filter`, it would previously overwrite the `dict` returned from the actions themselves.
New functionality is that dict keys returned by an action will overwrite dict keys returned by the `_before_filter`.
- Default `JSONEncoder` is set to `DjangoJSONEncoder`.
- Removed dependency on `simplejson`.

## [0.5.2] - 2020-04-29
### Bugfix
- Using `@json_action()` or `@yaml_action()` would crash if the action returns an HttpResponse and not serializable data.
Expand Down
2 changes: 1 addition & 1 deletion django_url_framework/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (0, 5, 2)
VERSION = (0, 5, 3)
default_app_config = 'django_url_framework.apps.URLFrameworkAppConfig'


Expand Down

0 comments on commit 038b2f2

Please sign in to comment.