Skip to content
Snippets Groups Projects
Commit 3badb994 authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

REL: Release 0.12.3

See merge request !119
parents 2efc717f 8e530114
No related branches found
No related tags found
1 merge request!119FIX: Workaround in `make jar` for Debian bug in Maven.
Pipeline #55647 passed
......@@ -5,6 +5,12 @@ 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.12.3] - 2024-09-25
### Fixed
* Workaround in `make jar` for Debian bug https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1039607
## [0.12.2] - 2024-03-18
### Fixed
......
......@@ -23,6 +23,6 @@ authors:
given-names: Stefan
orcid: https://orcid.org/0000-0001-7214-8125
title: "CaosDB - Server"
version: 0.12.2
version: 0.12.3
doi: 10.3390/data4020083
date-released: 2024-03-18
date-released: 2024-09-25
......@@ -23,7 +23,9 @@
# ** end header
#
CAOSDB_SERVER_VERSION ?= $(shell mvn org.apache.maven.plugins:maven-help-plugin:3.1.0:evaluate -Dexpression=project.version -q -DforceStdout)
# TODO Remove the "sed" part of the command after the fix of
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1039607
CAOSDB_SERVER_VERSION != mvn org.apache.maven.plugins:maven-help-plugin:3.5.0:evaluate -Dexpression=project.version -q -DforceStdout | sed -e 's/\x1B.*//g'
CAOSDB_COMMAND_LINE_OPTIONS ?=
SHELL:=/bin/bash
JPDA_PORT ?= 9000
......@@ -59,7 +61,7 @@ formatting:
jar: print-version easy-units
mvn -e package -DskipTests
@pushd target ; \
ln -s caosdb-server-$(CAOSDB_SERVER_VERSION)-jar-with-dependencies.jar caosdb-server.jar; \
ln -s "caosdb-server-$(CAOSDB_SERVER_VERSION)-jar-with-dependencies.jar" caosdb-server.jar; \
popd
antlr:
......
......@@ -25,7 +25,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.caosdb</groupId>
<artifactId>caosdb-server</artifactId>
<version>0.12.2</version>
<version>0.12.3</version>
<packaging>jar</packaging>
<name>CaosDB Server</name>
<scm>
......
......@@ -26,9 +26,9 @@ copyright = '2023, IndiScale GmbH'
author = 'Daniel Hornung, Timm Fitschen'
# The short X.Y version
version = '0.12.2'
version = '0.12.3'
# The full version, including alpha/beta/rc tags
release = '0.12.2'
release = '0.12.3'
# -- General configuration ---------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment