From abb47bfabfaf7bd496609a4f20e0a69588d8b351 Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Mon, 14 Feb 2022 11:58:10 -0500 Subject: [PATCH] Bump version to 0.7.0 --- CHANGELOG.md | 11 +++++++++++ CMakeLists.txt | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5c2ec0..712ad85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [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 +* Introduce caching capabilities when fetching results by @plexoos in https://github.com/BNLNPPS/xpload/pull/6 +* Implement retries for unsuccessful fetching attempts by @plexoos in https://github.com/BNLNPPS/xpload/pull/10 + +- config: Rename environment variable `s/XPLOAD_CONFIG_NAME/XPLOAD_CONFIG/` +- config: Improve error handling while parsing json file +- Various improvements and enhancements of the tests + + ## [0.6.0] - 2022-01-12 - Added a test to simulate real jobs with multiple calls fetching payload diff --git a/CMakeLists.txt b/CMakeLists.txt index e316f39..6242ce9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) -project(xpload VERSION 0.6.0 LANGUAGES CXX) +project(xpload VERSION 0.7.0 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON)