diff --git a/CHANGES.rst b/CHANGES.rst index 91fb5b1..4cd4be5 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,14 +1,29 @@ Changes ======= +Version 0.2.0 (2020-11-19) +-------------------------- + +- Adds new ``list-directory`` command to list content of EOS directories + holding open data files. +- Adds support for Python 3.9. +- Improves ``download-files`` command to allow using XRootD protocol. +- Improves ``download-files`` command to allow using HTTPS protocol. +- Improves ``download-files`` command to optionally verify file integrity as + soon as files are being downloaded. +- Improves ``get-file-locations`` command to optionally output file sizes and + checksums. +- Improves output format colouring to better indicate notes and errors. +- Fixes minor issues and improves code coverage. + Version 0.1.0 (2020-09-24) -------------------------- -- Enriches `download-files` command to optionally download only files +- Enriches ``download-files`` command to optionally download only files matching certain name, regexp, or range count. -- Adds new `verify-files` command to verify number, size, and checksum of +- Adds new ``verify-files`` command to verify number, size, and checksum of downloaded files. -- Improves `get-metadata` command with respect to outputting only +- Improves ``get-metadata`` command with respect to outputting only certain desired metadata field values. - Enriches user documentation. diff --git a/cernopendata_client/version.py b/cernopendata_client/version.py index 8e9dde0..263d8a2 100644 --- a/cernopendata_client/version.py +++ b/cernopendata_client/version.py @@ -14,4 +14,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.1.0" +__version__ = "0.2.0"