diff options
-rw-r--r-- | CHANGES.txt | 13 | ||||
-rw-r--r-- | setup.py | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 4a66c15..3ad290b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,16 @@ +1.8.2 (2018-06-05) +------------------ + +Bugfix +~~~~~~ + +- SameSite may now be passed as str or bytes to `Response.set_cookie` and + `cookies.make_cookie`. This was an oversight as all other arguments would be + correctly coerced before being serialized. See + https://github.com/Pylons/webob/issues/361 and + https://github.com/Pylons/webob/pull/362 + + 1.8.1 (2018-04-10) ------------------ @@ -25,7 +25,7 @@ docs_extras = [ setup( name='WebOb', - version='1.8.1', + version='1.8.2', description="WSGI request and response object", long_description=README + '\n\n' + CHANGES, classifiers=[ |