diff --git a/CHANGELOG.md b/CHANGELOG.md index 712ad85..1584479 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.8.0] - 2022-04-20 + +- Introduced add and push actions into xpl CLI tool + - Removed deprecated insert action +- Improved existing and added new tests for CLI and the library +- Cleaned and restructured available configurations + - More strict search rules for configuration files + - Switched to production settings by default +- Registered project with zenodo https://zenodo.org/badge/latestdoi/419745626 + +* config: Update domain to reflect the change introduced by openshift admins by @plexoos in https://github.com/BNLNPPS/xpload/pull/17 +* fetch: Add the first payload path to returned results by @plexoos in https://github.com/BNLNPPS/xpload/pull/18 +* Constrain search for configuration file by environment variable by @plexoos in https://github.com/BNLNPPS/xpload/pull/19 +* config: Throw runtime exceptions in Configurator constructor by @plexoos in https://github.com/BNLNPPS/xpload/pull/21 +* Support search for payload files in multiple prefixes by @plexoos in https://github.com/BNLNPPS/xpload/pull/23 + + ## [0.7.0] - 2022-02-14 * docker: Switch from CentOS 8 to RockyLinux 8.5 by @plexoos in https://github.com/BNLNPPS/xpload/pull/8 diff --git a/CMakeLists.txt b/CMakeLists.txt index 0251b36..3821f93 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) -project(xpload VERSION 0.7.4 LANGUAGES CXX) +project(xpload VERSION 0.8.0 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/README.md b/README.md index 0fa558d..a6de8ee 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ **xpload** is a C++ library to communicate with a calibration database via `libcurl` +[![DOI](https://zenodo.org/badge/419745626.svg)](https://zenodo.org/badge/latestdoi/419745626) + + ## Prerequisites - C++17 (gcc 10.2.1)