Skip to content

Commit

Permalink
Merge branch 'release/0.8.7'
Browse files Browse the repository at this point in the history
  • Loading branch information
pavlov99 committed Apr 20, 2015
2 parents 56c425c + 4602469 commit 0cb1961
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2015-04-20 Kirill Pavlov <kirill.pavlov@phystech.edu>

* Add request logger.

2015-04-14 Kirill Pavlov <kirill.pavlov@phystech.edu>

* Handle parse error and invalid params exceptions during post/put
Expand Down
2 changes: 1 addition & 1 deletion jsonapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
""" JSON:API realization."""
__version = (0, 8, 6)
__version = (0, 8, 7)

__version__ = version = '.'.join(map(str, __version))
__project__ = PROJECT = __name__
1 change: 1 addition & 0 deletions jsonapi/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ def handler_view(self, request, resource_name, ids=None):
:return django.http.HttpResponse
"""
logger.info("{} {}".format(request.method, request.path))
self.update_urls(request, resource_name=resource_name, ids=ids)
resource = self.resource_map[resource_name]

Expand Down

0 comments on commit 0cb1961

Please sign in to comment.