Skip to content

Commit

Permalink
Merge pull request ThoSe1990#59 from ThoSe1990/release/2.4
Browse files Browse the repository at this point in the history
bump to 2.4
  • Loading branch information
ThoSe1990 authored Nov 14, 2024
2 parents 9eb8acb + 5a47f11 commit e8fc31f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [2.4] 2024-11-14

### Added
- `cwt_cucumber` object for embedding CWT Cucumber and executing tests ([49](https://github.com/ThoSe1990/cwt-cucumber/pull/49))
- `--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))
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

cmake_minimum_required(VERSION 3.16)
project(cwt-cucumber VERSION 2.3.1)
project(cwt-cucumber VERSION 2.4)

set(CMAKE_CXX_STANDARD 20)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Conan (2.x) Recipe: https://github.com/ThoSe1990/cwt-cucumber-conan. I didn't pu
```shell
git clone https://github.com/ThoSe1990/cwt-cucumber-conan.git
cd package
conan create . --version 2.3.1 --user cwt --channel stable
conan create . --version 2.4 --user cwt --channel stable
```

Thanks to [Jörg Kreuzberger](https://github.com/kreuzberger), who has contributed and tested a lot lately, which has improved this project a lot.
Expand Down
2 changes: 1 addition & 1 deletion src/version.template
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace cuke::version

[[nodiscard]] static constexpr std::string_view as_string()
{
return std::string_view("${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}");
return std::string_view("${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}");
}


Expand Down

0 comments on commit e8fc31f

Please sign in to comment.