Skip to content

Commit

Permalink
Merge pull request #109 from OnroerendErfgoed/FIX_0.8.1
Browse files Browse the repository at this point in the history
Fix 0.8.1
  • Loading branch information
goessebr committed Jun 6, 2019
2 parents e8fbbe4 + 948bce3 commit bdc59fb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
0.8.1 (06-06-2019)
------------------

- Etag tween geeft soms errors (#102)

0.8.0 (11-01-2019)
------------------

Expand Down
2 changes: 2 additions & 0 deletions crabpy_pyramid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ def conditional_http_tween_factory(handler, registry):

def conditional_http_tween(request):
response = handler(request)
if request.matched_route is None:
return response

if request.matched_route.name in GENERATE_ETAG_ROUTE_NAMES:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
testing_extras = tests_requires + []

setup(name='crabpy_pyramid',
version='0.8.0',
version='0.8.1',
description='Bindings for the CRABpy webservices and the Pyramid framework.',
long_description=README + '\n\n' + CHANGES,
classifiers=[
Expand Down

0 comments on commit bdc59fb

Please sign in to comment.