From 19afaa944da2489c0746b6bdd0c25328885772b8 Mon Sep 17 00:00:00 2001 From: Timm Fitschen <t.fitschen@indiscale.com> Date: Fri, 25 Mar 2022 12:49:28 +0100 Subject: [PATCH] REL: prepare release 0.7.2 --- CHANGELOG.md | 9 ++++++--- DEPENDENCIES.md | 4 ++-- FEATURES.md | 2 +- caosdb-proto | 2 +- caosdb-webui | 2 +- pom.xml | 2 +- src/doc/conf.py | 4 ++-- 7 files changed, 14 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1354bf47..31d90b46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,12 +5,15 @@ 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] +## [0.7.2] - 2022-03-25 +(Timm Fitschen) + +This is an important security update. ### Added -* Implementation for the ACM GRPC-API -* Implementation for the EntityACL GRPC-API +* Implementation for the ACM GRPC-API (caosdb-proto 0.2) +* Implementation for the EntityACL GRPC-API (caosdb-proto 0.2) ### Changed diff --git a/DEPENDENCIES.md b/DEPENDENCIES.md index 2f2967d0..3a388c54 100644 --- a/DEPENDENCIES.md +++ b/DEPENDENCIES.md @@ -2,7 +2,7 @@ ## For Building and Running the Server -* `>=caosdb-proto 0.1.0` +* `>=caosdb-proto 0.2.0` * `>=caosdb-mysqlbackend 5.0.0` * `>=Java 11` * `>=Apache Maven 3.6.0` @@ -12,7 +12,7 @@ ## For Deploying a Web User Interface (optional) -* `>=caosdb-webui 0.4.` +* `>=caosdb-webui 0.5.0` ## For Building the Documentation (optional) diff --git a/FEATURES.md b/FEATURES.md index a5341f35..ac273ca1 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -1,6 +1,6 @@ # Features -* The CaosDB Server implements a CaosDB GRPC API Endpoint (v0.1.0) +* The CaosDB Server implements a CaosDB GRPC API Endpoint (v0.2.0) Authentication is supported via a Basic scheme, using the well-known "authentication" header. Notable limitations of the current implementation of the API: diff --git a/caosdb-proto b/caosdb-proto index 02e56997..c439aa40 160000 --- a/caosdb-proto +++ b/caosdb-proto @@ -1 +1 @@ -Subproject commit 02e56997f29ee3bfc2c079c9776f66659379c58a +Subproject commit c439aa40a30c9214db315018b84fa50112c9251e diff --git a/caosdb-webui b/caosdb-webui index b1034fb5..6d4bc7b3 160000 --- a/caosdb-webui +++ b/caosdb-webui @@ -1 +1 @@ -Subproject commit b1034fb515b00293dd48bdb17a230fa5c723dbdf +Subproject commit 6d4bc7b30b8d226f0c46efe644dc530cbc205257 diff --git a/pom.xml b/pom.xml index 733a5b4c..e0312184 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.caosdb</groupId> <artifactId>caosdb-server</artifactId> - <version>0.8.0-SNAPSHOT</version> + <version>0.7.2</version> <packaging>jar</packaging> <name>CaosDB Server</name> <scm> diff --git a/src/doc/conf.py b/src/doc/conf.py index 079eec42..89162bfd 100644 --- a/src/doc/conf.py +++ b/src/doc/conf.py @@ -25,9 +25,9 @@ copyright = '2020, IndiScale GmbH' author = 'Daniel Hornung' # The short X.Y version -version = '0.8.0' +version = '0.7.2' # The full version, including alpha/beta/rc tags -release = '0.8.0-SNAPSHOT' +release = '0.7.2' # -- General configuration --------------------------------------------------- -- GitLab