Skip to content

Commit

Permalink
LOBSTER Release 0.9.18 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
phiwuu authored Oct 22, 2024
1 parent 69635b8 commit f20c786
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

## Changelog

### 0.9.18-dev
### 0.9.18

* Added a new tool `lobster-cpptest` which can extract references
from C++ unit tests using various regex patterns.
The references must be provided in a format similar to Doxygen comments.

* The `lobster-codebeamer` tool now uses an authentication token.
Token can be added either in the config file or as an argument.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ The individual packages that `bmw-lobster` depends on are:
* `bmw-lobster-core` the core API and various report generators. All
other tools depend on this.
* `bmw-lobster-tool-cpp` (for C/C++ code)
* `bmw-lobster-tool-cpptest` (for C/C++ code)
* `bmw-lobster-tool-gtest` (for GoogleTest tests)
* `bmw-lobster-tool-python` (for Python3 code)
* `bmw-lobster-tool-beamer` (for requirements in Codebeamer)
Expand Down
2 changes: 1 addition & 1 deletion lobster/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# <https://www.gnu.org/licenses/>.

VERSION_TUPLE = (0, 9, 18)
VERSION_SUFFIX = "dev"
VERSION_SUFFIX = ""

LOBSTER_VERSION = ("%u.%u.%u" % VERSION_TUPLE) + \
("-%s" % VERSION_SUFFIX if VERSION_SUFFIX else "")
Expand Down

0 comments on commit f20c786

Please sign in to comment.