From 63b930105223cba7b399416c1fabf4590dd1b0aa Mon Sep 17 00:00:00 2001 From: Daniel <d.hornung@indiscale.com> Date: Thu, 22 Sep 2022 14:01:20 +0200 Subject: [PATCH] DOC: Changelog for new release. --- doc/CHANGELOG.md | 16 ++++++++-------- include/caosdb/logging.h | 4 ++-- src/caosdb/connection.cpp | 4 ++-- .../download_request_handler.cpp | 4 ++-- .../file_transmission/upload_request_handler.cpp | 4 ++-- src/caosdb/transaction.cpp | 4 ++-- src/caosdb/unary_rpc_handler.cpp | 4 ++-- test/test_transaction.cpp | 4 ++-- 8 files changed, 22 insertions(+), 22 deletions(-) diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index e3af12d..8f8b536 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.1] - 2022-09-22 ## +(Daniel Hornung) + +### Changed ### + +* Updated dependencies +* Simplified implementation code a bit + ## [0.2.0] - 2022-07-13 (Timm Fitschen) @@ -19,19 +27,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Transaction::ExecuteAsynchronously is actually asynchronous now. * Removed boost from the headers. Boost is only a build dependency from now on. -### Deprecated - -### Removed - ### Fixed * Calling "GetFileDescriptor().wrapped->path()" after retrieval leads to SegFault. - #41 Updated Conan version in CI pipeline. -### Security - -### Documentation - ## [0.1.2] - 2022-05-31 (Florian Spreckelsen) diff --git a/include/caosdb/logging.h b/include/caosdb/logging.h index 50e61ee..3fda8e8 100644 --- a/include/caosdb/logging.h +++ b/include/caosdb/logging.h @@ -2,8 +2,8 @@ /* * This file is a part of the CaosDB Project. * - * Copyright (C) 2021 Timm Fitschen <t.fitschen@indiscale.com> - * Copyright (C) 2021 IndiScale GmbH <info@indiscale.com> + * Copyright (C) 2021-2022 Timm Fitschen <t.fitschen@indiscale.com> + * Copyright (C) 2021-2022 IndiScale GmbH <info@indiscale.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/caosdb/connection.cpp b/src/caosdb/connection.cpp index b5219d9..4c77c52 100644 --- a/src/caosdb/connection.cpp +++ b/src/caosdb/connection.cpp @@ -2,8 +2,8 @@ * * This file is a part of the CaosDB Project. * - * Copyright (C) 2021 Timm Fitschen <t.fitschen@indiscale.com> - * Copyright (C) 2021 IndiScale GmbH <info@indiscale.com> + * Copyright (C) 2021-2022 Timm Fitschen <t.fitschen@indiscale.com> + * Copyright (C) 2021-2022 IndiScale GmbH <info@indiscale.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/caosdb/file_transmission/download_request_handler.cpp b/src/caosdb/file_transmission/download_request_handler.cpp index 2415a14..1b0764f 100644 --- a/src/caosdb/file_transmission/download_request_handler.cpp +++ b/src/caosdb/file_transmission/download_request_handler.cpp @@ -1,7 +1,7 @@ /* * This file is a part of the CaosDB Project. - * Copyright (C) 2021 Timm Fitschen <t.fitschen@indiscale.com> - * Copyright (C) 2021 IndiScale GmbH <info@indiscale.com> + * Copyright (C) 2021-2022 Timm Fitschen <t.fitschen@indiscale.com> + * Copyright (C) 2021-2022 IndiScale GmbH <info@indiscale.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/caosdb/file_transmission/upload_request_handler.cpp b/src/caosdb/file_transmission/upload_request_handler.cpp index d307e8e..57bd224 100644 --- a/src/caosdb/file_transmission/upload_request_handler.cpp +++ b/src/caosdb/file_transmission/upload_request_handler.cpp @@ -1,7 +1,7 @@ /* * This file is a part of the CaosDB Project. - * Copyright (C) 2021 Timm Fitschen <t.fitschen@indiscale.com> - * Copyright (C) 2021 IndiScale GmbH <info@indiscale.com> + * Copyright (C) 2021-2022 Timm Fitschen <t.fitschen@indiscale.com> + * Copyright (C) 2021-2022 IndiScale GmbH <info@indiscale.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/caosdb/transaction.cpp b/src/caosdb/transaction.cpp index 9da3716..ca8338d 100644 --- a/src/caosdb/transaction.cpp +++ b/src/caosdb/transaction.cpp @@ -1,7 +1,7 @@ /* * This file is a part of the CaosDB Project. - * Copyright (C) 2021 Timm Fitschen <t.fitschen@indiscale.com> - * Copyright (C) 2021 IndiScale GmbH <info@indiscale.com> + * Copyright (C) 2021-2022 Timm Fitschen <t.fitschen@indiscale.com> + * Copyright (C) 2021-2022 IndiScale GmbH <info@indiscale.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/src/caosdb/unary_rpc_handler.cpp b/src/caosdb/unary_rpc_handler.cpp index e68afc8..6d116ea 100644 --- a/src/caosdb/unary_rpc_handler.cpp +++ b/src/caosdb/unary_rpc_handler.cpp @@ -1,7 +1,7 @@ /* * This file is a part of the CaosDB Project. - * Copyright (C) 2021 Timm Fitschen <t.fitschen@indiscale.com> - * Copyright (C) 2021 IndiScale GmbH <info@indiscale.com> + * Copyright (C) 2021-2022 Timm Fitschen <t.fitschen@indiscale.com> + * Copyright (C) 2021-2022 IndiScale GmbH <info@indiscale.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as diff --git a/test/test_transaction.cpp b/test/test_transaction.cpp index dfe6bea..77d457c 100644 --- a/test/test_transaction.cpp +++ b/test/test_transaction.cpp @@ -1,8 +1,8 @@ /* * This file is a part of the CaosDB Project. * - * Copyright (C) 2021 Timm Fitschen <t.fitschen@indiscale.com> - * Copyright (C) 2021 IndiScale GmbH <info@indiscale.com> + * Copyright (C) 2021-2022 Timm Fitschen <t.fitschen@indiscale.com> + * Copyright (C) 2021-2022 IndiScale GmbH <info@indiscale.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as -- GitLab