From 578f4df54672355263e441a04759436aea893bd6 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Mon, 24 Jan 2022 16:07:07 +0100 Subject: [PATCH] REL: start new release cycle 0.2.0 --- CMakeLists.txt | 2 +- conanfile.py | 2 +- doc/CHANGELOG.md | 14 ++++++++++++++ 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 402aaf8..f83cfb2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,7 +20,7 @@ cmake_minimum_required(VERSION 3.13) -set(libcaosdb_VERSION 0.1.0) +set(libcaosdb_VERSION 0.2.0) set(libcaosdb_COMPATIBLE_SERVER_VERSION_MAJOR 0) set(libcaosdb_COMPATIBLE_SERVER_VERSION_MINOR 7) set(libcaosdb_COMPATIBLE_SERVER_VERSION_PATCH 1) diff --git a/conanfile.py b/conanfile.py index 6fc869f..f399a64 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ from conans import ConanFile, CMake, tools class CaosdbConan(ConanFile): name = "caosdb" - version = "0.1.0" + version = "0.2.0-dev" license = "AGPL-3.0-or-later" author = "Timm C. Fitschen <t.fitschen@indiscale.com>" url = "https://gitlab.indiscale.com/caosdb/src/caosdb-cpplib.git" diff --git a/doc/CHANGELOG.md b/doc/CHANGELOG.md index dfddb70..1010cae 100644 --- a/doc/CHANGELOG.md +++ b/doc/CHANGELOG.md @@ -5,6 +5,20 @@ 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] + +### Added + +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + ## [0.1.0 - 2021-12-11] Initial Release. -- GitLab