Skip to content

Commit 5a47f11

Browse files
committed
bump to 2.4
1 parent 9eb8acb commit 5a47f11

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [2.4] 2024-11-14
6+
57
### Added
68
- `cwt_cucumber` object for embedding CWT Cucumber and executing tests ([49](https://github.com/ThoSe1990/cwt-cucumber/pull/49))
79
- `--steps-catalog [optional: file]` to print the implemented steps as readable text to stdout or a given file (this does not write to '.feature' files) ([50](https://github.com/ThoSe1990/cwt-cucumber/pull/50))

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
cmake_minimum_required(VERSION 3.16)
3-
project(cwt-cucumber VERSION 2.3.1)
3+
project(cwt-cucumber VERSION 2.4)
44

55
set(CMAKE_CXX_STANDARD 20)
66

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Conan (2.x) Recipe: https://github.com/ThoSe1990/cwt-cucumber-conan. I didn't pu
3535
```shell
3636
git clone https://github.com/ThoSe1990/cwt-cucumber-conan.git
3737
cd package
38-
conan create . --version 2.3.1 --user cwt --channel stable
38+
conan create . --version 2.4 --user cwt --channel stable
3939
```
4040

4141
Thanks to [Jörg Kreuzberger](https://github.com/kreuzberger), who has contributed and tested a lot lately, which has improved this project a lot.

src/version.template

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace cuke::version
1111

1212
[[nodiscard]] static constexpr std::string_view as_string()
1313
{
14-
return std::string_view("${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}");
14+
return std::string_view("${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}");
1515
}
1616

1717

0 commit comments

Comments
 (0)