From ea3d6245e38022317dbf54c04c8c9f13297b0c07 Mon Sep 17 00:00:00 2001 From: Matthew Bourque Date: Tue, 23 Jul 2019 11:38:36 -0400 Subject: [PATCH] Updated version number and changelog for 0.21.0 release --- CHANGES.rst | 42 ++++++++++++++++++++++++++++++++++++++++++ setup.py | 2 +- 2 files changed, 43 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 6996c881f..507a7ae40 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,45 @@ +0.21.0 (2019-07-23) +=================== + +New Features +------------ + +Project & API Documentation +~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Updated ``README`` to include instructions on package installation via ``pip``. + +Web Application +~~~~~~~~~~~~~~~ + +- Updated all webpages to conform to Web Application Accessibility Guidelines. +- Upgraded to ``django`` version 2.2. +- ``bokeh`` is now imported in ``base`` template so that the version being used is consistent across all HTML templates. + +``jwql`` Repository +~~~~~~~~~~~~~~~~~~~ + +- The ``jwql`` package is now available on PyPI (https://pypi.org/project/jwql/) and installable via ``pip``. +- Updated Jenkins configuration file to include in-line comments and descriptions. +- Added ``utils`` function to validate the ``config.json`` file during import of ``jwql`` package. +- Added support for monitoring contents of the ``jwql`` central storage area in the filesystem monitor. + + +Bug Fixes +--------- + +Web Application +~~~~~~~~~~~~~~~ + +- Fixed position error of JWQL version display in footer. + +``jwql`` Repository +~~~~~~~~~~~~~~~~~~~ + +- Fixed spelling error in dark monitor database column names. +- Fixed dark monitor to avoid processing files that are not in the filesystem. + + 0.20.0 (2019-06-05) =================== diff --git a/setup.py b/setup.py index ac3dba14b..9ca1beafc 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup from setuptools import find_packages -VERSION = '0.20.0' +VERSION = '0.21.0' AUTHORS = 'Matthew Bourque, Lauren Chambers, Misty Cracraft, Joe Filippazzo, Bryan Hilbert, ' AUTHORS += 'Graham Kanarek, Catherine Martlin, Johannes Sahlmann'