diff --git a/CHANGELOG.md b/CHANGELOG.md index 457ea869..b7f8e0f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 93ba8a05..70bdc23b 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/lobster/version.py b/lobster/version.py index 14b91bd9..e131e6b3 100644 --- a/lobster/version.py +++ b/lobster/version.py @@ -18,7 +18,7 @@ # . VERSION_TUPLE = (0, 9, 18) -VERSION_SUFFIX = "dev" +VERSION_SUFFIX = "" LOBSTER_VERSION = ("%u.%u.%u" % VERSION_TUPLE) + \ ("-%s" % VERSION_SUFFIX if VERSION_SUFFIX else "")