From d4e96c15c085f5aa4ee92f270b30188436f218f0 Mon Sep 17 00:00:00 2001 From: Kedar Navare Date: Tue, 17 Dec 2024 08:18:07 +0100 Subject: [PATCH] LOBSTER Release 0.9.21 --- CHANGELOG.md | 6 +++--- lobster/version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69dde537..fc52ebe2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,10 @@ ## Changelog -### 0.9.21-dev +### 0.9.21 -* `lobster-codebeamer` now supports query string, query string (cbQL) can be passed - as a command line argument to the tool `lobster-codebeamer`. +* `lobster-codebeamer` now supports query string along with query ID, query string (cbQL) can be passed + as a command line argument to `--import-query` for the tool `lobster-codebeamer`. * `lobster-html-report` has the following updates. * Filter items by status (Ok, Missing, Partial, Warning, Justified) diff --git a/lobster/version.py b/lobster/version.py index b3584d2a..871f6c2e 100644 --- a/lobster/version.py +++ b/lobster/version.py @@ -20,7 +20,7 @@ from argparse import ArgumentParser VERSION_TUPLE = (0, 9, 21) -VERSION_SUFFIX = "dev" +VERSION_SUFFIX = "" LOBSTER_VERSION = ("%u.%u.%u" % VERSION_TUPLE) + ( "-%s" % VERSION_SUFFIX if VERSION_SUFFIX else ""