diff --git a/CHANGELOG.md b/CHANGELOG.md index 26b62bc..f04c5bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [0.7.1] - 2020-09-15 +### Added +- PUT method used to update metadata + +### Changed +- Replaced `flask-restplus` with `connexion` package for OpenAPI generation +- Refactored code based on OpenAPI specification +- Removed ending '/' in endpoints, e.g. '/catalog/' was changed to '/catalog'. +- Removed Bottle and Paste dependecies +- Removed docker compose file for production run + + ## [0.7.0] - 2020-06-12 ### Added - POST and DELETE methods diff --git a/CITATION.cff b/CITATION.cff index 717be01..8b62e02 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -24,10 +24,10 @@ authors: orcid: "https://orcid.org/0000-0002-1409-8358" cff-version: "1.0.3" -date-released: 2020-06-12 +date-released: 2020-09-15 doi: 10.5281/zenodo.1083951 license: Apache-2.0 message: "If you use this software, please cite it using these metadata." repository-code: "https://github.com/NLeSC/fairdatapoint" title: "FAIR Data Point" -version: '0.7.0' +version: '0.7.1' diff --git a/fdp/__version__.py b/fdp/__version__.py index a71c5c7..f0788a8 100644 --- a/fdp/__version__.py +++ b/fdp/__version__.py @@ -1 +1 @@ -__version__ = '0.7.0' +__version__ = '0.7.1'