From 72e78bd80719f895c192f041f0e0608330d0317e Mon Sep 17 00:00:00 2001 From: David Megginson Date: Tue, 12 Mar 2019 11:27:42 -0400 Subject: [PATCH] Prepare 1.14.1 interim release #262 --- CHANGELOG | 4 +++- hxl_proxy/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 1d3c8cbf..bebafe21 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,8 @@ -Release 1.15 +2019-03-12 Release 1.14.1 - fix typo in config file template - switch to Flask 1.x and Flask-Caching packages + - fix bug in caching for POST validation request + - increase gunicorn max GET request line to 8K characters 2019-03-04 Release 1.14 - longer cache for P-codes (1 week by default) diff --git a/hxl_proxy/__init__.py b/hxl_proxy/__init__.py index 1b131df6..b3553905 100644 --- a/hxl_proxy/__init__.py +++ b/hxl_proxy/__init__.py @@ -16,7 +16,7 @@ import werkzeug.datastructures from . import reverse_proxied -__version__="1.14" +__version__="1.14.1" """Module version number See https://www.python.org/dev/peps/pep-0396/ """ diff --git a/setup.py b/setup.py index 026fd081..b9ec759f 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ name = 'hxl-proxy', packages = ['hxl_proxy'], package_data={'hxl_proxy': ['*.sql']}, - version = "1.14", + version = "1.14.1", description = 'Flask-based web proxy for HXL', author='David Megginson', author_email='contact@megginson.com',