From f26bd940e175a230d75e28a0bcb21197e7548cd4 Mon Sep 17 00:00:00 2001 From: David Megginson Date: Tue, 30 Aug 2016 15:07:35 -0400 Subject: [PATCH] Prepare for v0.6 release. --- CHANGELOG | 14 ++++++++++++++ Changes.txt | 22 ---------------------- setup.py | 2 +- 3 files changed, 15 insertions(+), 23 deletions(-) create mode 100644 CHANGELOG delete mode 100644 Changes.txt diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 00000000..5a761c5f --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,14 @@ +2016-08-30 Release 0.6 + - Add support for requests-cache, so that different views of the same + dataset won't require constant redownloading. + - Add support for a local copy of the p-code GeoJSON shapes tree, for + offline demos (or other purposes). + - Make the list of countries presented in the mapping dropdown menu + configurable. + - Fix exception handling around a missing data source, to avoid + unpredictable behaviour (and incorrect claims of missing HXL hashtags + on first load from Google Drive). + - Start adding scaffolding for jquery-sortable to rearrange filters, but + not supported yet in the backend. + - Remove the sidebar (very slow to download the PNGs in a field + environment). diff --git a/Changes.txt b/Changes.txt deleted file mode 100644 index 6dce4d14..00000000 --- a/Changes.txt +++ /dev/null @@ -1,22 +0,0 @@ -HXL Proxy changes - -v0.6: - -Added support for requests-cache, so that different views of the same -dataset won't require constant redownloading. - -Add support for a local copy of the p-code GeoJSON shapes tree, for -offline demos (or other purposes). - -Make the list of countries presented in the mapping dropdown menu -configurable. - -Fix exception handling around a missing data source, to avoid -unpredictable behaviour (and incorrect claims of missing HXL hashtags -on first load from Google Drive). - -Start adding scaffolding for jquery-sortable to rearrange filters, but -not supported yet in the backend. - -Remove the sidebar (very slow to download the PNGs in a field -environment). diff --git a/setup.py b/setup.py index 8d04dddb..b909ef4a 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ url='https://github.com/HXLStandard/hxl-proxy', include_package_data = True, zip_safe = False, - install_requires=['flask-cache>=0.13', 'libhxl>=2.6', 'ckanapi>=3.5', 'flask>=0.10', 'requests_cache'], + install_requires=['flask-cache>=0.13', 'libhxl>=3.2', 'ckanapi>=3.5', 'flask>=0.10', 'requests_cache'], test_suite = "tests", tests_require = ['mock'] )