From 0afba9f44765191b8ef23cc7060e9e3e9bbadeee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com> Date: Fri, 12 Feb 2021 09:56:43 +0100 Subject: [PATCH] DOC: fix version number and add version change to release guideline --- RELEASE_GUIDELINES.md | 2 +- src/doc/conf.py | 4 ++-- .../java/org/caosdb/server/jobs/core/InsertFilesInDir.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASE_GUIDELINES.md b/RELEASE_GUIDELINES.md index d6c4cabb..5d89ceec 100644 --- a/RELEASE_GUIDELINES.md +++ b/RELEASE_GUIDELINES.md @@ -19,7 +19,7 @@ guidelines of the CaosDB Project 2. Check all general prerequisites. 3. Update the version property in [pom.xml](./pom.xml) (probably this means to - remove the `-SNAPSHOT`. + remove the `-SNAPSHOT`) and in `src/doc/conf.py`. 4. Merge the release branch into the master branch. diff --git a/src/doc/conf.py b/src/doc/conf.py index 84e67639..fb3d6264 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.2' +version = '0.3' # The full version, including alpha/beta/rc tags -release = '0.2' +release = '0.3' # -- General configuration --------------------------------------------------- diff --git a/src/main/java/org/caosdb/server/jobs/core/InsertFilesInDir.java b/src/main/java/org/caosdb/server/jobs/core/InsertFilesInDir.java index 73d7ee3f..ac7a9b83 100644 --- a/src/main/java/org/caosdb/server/jobs/core/InsertFilesInDir.java +++ b/src/main/java/org/caosdb/server/jobs/core/InsertFilesInDir.java @@ -227,7 +227,7 @@ public class InsertFilesInDir extends FlagJob { continue; } - // add create symlink and file record to this + // add create symlink and add file record to this // container if the target // path is allowed if (FileSystem.checkTarget( -- GitLab