From ee6b493da087f3bd12f2a56b7a0d5f9372c2b4f8 Mon Sep 17 00:00:00 2001 From: Kevin Steves Date: Wed, 27 Jan 2016 10:58:20 -0700 Subject: [PATCH] 0.9.0 --- HISTORY.rst | 13 +++++++++++++ lib/pan/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 1f5a350..56f41be 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,19 @@ Release History =============== +0.9.0 (2016-01-27) +------------------ + +- AutoFocus API support. + +- panwfapi.py: Add hash length to hash invalid length message. + +- pan.wfapi: Use email package for HTTP header retrieval and parsing; + also fixes potential issue with not handling a quoted filename in + content-disposition header. + + content-disposition: attachment; filename="sample" + 0.8.0 (2015-10-17) ------------------ diff --git a/lib/pan/__init__.py b/lib/pan/__init__.py index 5169fd5..63e1d71 100644 --- a/lib/pan/__init__.py +++ b/lib/pan/__init__.py @@ -16,7 +16,7 @@ import logging -__version__ = '0.8.0-current' +__version__ = '0.9.0' DEBUG1 = logging.DEBUG DEBUG2 = DEBUG1 - 1