diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1854a42a694896a413572c324941a92d6757963c..739f99446c9a3169349c8bc17a614135f788a793 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -176,7 +176,7 @@ trigger_inttest: # After the cppinttest have been successful, also start tests for Octave... trigger_octavelib: stage: deploy - needs: [ trigger_prepare ] + needs: [ trigger_inttest ] inherit: variables: # List the variables that shall be inherited, which also means they will override any equally @@ -195,7 +195,7 @@ trigger_octavelib: # ... and for Julia. trigger_julialib: stage: deploy - needs: [ trigger_prepare ] + needs: [ trigger_inttest ] inherit: variables: # List the variables that shall be inherited, which also means they will override any equally diff --git a/RELEASE_GUIDELINES.md b/RELEASE_GUIDELINES.md index 570ed0ee9b05610ebcebc539b018a48219a1c682..faa7d4399c10ea4e0b45c48943d122ac15fbef5b 100644 --- a/RELEASE_GUIDELINES.md +++ b/RELEASE_GUIDELINES.md @@ -44,4 +44,5 @@ guidelines of the CaosDB Project release cycle. * update `conanfile.py` * update `CMakeLists.txt` + * update `CHANGELOG.md` with empty `[Unreleased]` sections. * Don't forget to update cppintest. diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index e3af12debeb7ca2a6e3a6d69b7c88e886978fa4f..7c73e5991c9369cca78349fa0d8d243971c75497 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -5,6 +5,31 @@ 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). +## [Unreleased] - YYYY-MM-DD ## +(*Maintainer*) + +### Added + +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +### Documentation + +## [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,31 +44,23 @@ 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 +* #41 Updated Conan version in CI pipeline. ## [0.1.2] - 2022-05-31 (Florian Spreckelsen) ### Fixed -- #41 Updated Conan version in CI pipeline. +* #41 Updated Conan version in CI pipeline. ## [0.1.1 - 2022-04-12] ### Security -- Bumped zlib dependency to 1.2.12. +* Bumped zlib dependency to 1.2.12. ## [0.1.0 - 2021-12-11] diff --git a/include/caosdb/logging.h b/include/caosdb/logging.h index 50e61ee9560f885a05b997b16366ff9618eff5fc..3fda8e83ac5c164728b2cd156292d22952b70130 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 b5219d926cdf609fc10bae4d1225d187b28a5a95..4c77c5254c1300e908622882cd01d29d7b0aab65 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 2415a143fb514e8ab5dfb81e2de9c9ebadc1c704..1b0764fa2039b7d4c37ba09fdc03cedf4959736a 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 d307e8e872ab7bf49a375915f755f2e1a6b100b0..57bd224dfe53a57ecb706d74dc1438e143dac641 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 9da3716ab3995e6fcb08c93f95ea1b2cfa1e438c..ca8338dce4e4b721202e72c3fdecf58339746ee0 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 e68afc89eb193f21a05f16b992e75f9d538915d5..6d116eafae7203498ebf431a09d85c184b619191 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 dfe6bea5764116e1c09c04089ad6cf78e2e2db93..77d457c6eee2c5e9d95c53c95c1b2f0a713dcff4 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