Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 1.1.0 #85

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.0.0"
".": "1.1.0"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[MegaLinter] reported by reviewdog 🐶

Suggested change
".": "1.1.0"
".": "1.1.0"

}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.1.0](https://github.com/philips-software/amp-cucumber-cpp-runner/compare/v1.0.0...v1.1.0) (2024-11-14)


### Features

* Add workflows similar to amp-embedded-infra-lib, restructure components ([#84](https://github.com/philips-software/amp-cucumber-cpp-runner/issues/84)) ([2386d9e](https://github.com/philips-software/amp-cucumber-cpp-runner/commit/2386d9e571d92f8180167d95611be62f4d4509e5))
* Refactor and add tests for Step and StepRegistry ([#89](https://github.com/philips-software/amp-cucumber-cpp-runner/issues/89)) ([3d824cb](https://github.com/philips-software/amp-cucumber-cpp-runner/commit/3d824cb1a0c4824339d2e89b39801bc62c37a60e))


### Chores

* Removed unnecessary member function pointer ([#88](https://github.com/philips-software/amp-cucumber-cpp-runner/issues/88)) ([562ea5d](https://github.com/philips-software/amp-cucumber-cpp-runner/commit/562ea5db3bd4643c3304d4758fdc301ccb804bca))

## 1.0.0 (2024-09-27)


Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.24)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")

project(cucumber-cpp-runner LANGUAGES C CXX VERSION 1.0.0) # x-release-please-version
project(cucumber-cpp-runner LANGUAGES C CXX VERSION 1.1.0) # x-release-please-version

include(ccr_test_helpers)

Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sonar.organization=philips-software
sonar.projectName=amp-cucumber-cpp-runner

# x-release-please-start-version
sonar.projectVersion=1.0.0
sonar.projectVersion=1.1.0
# x-release-please-end

sonar.links.homepage=https://github.com/philips-software/amp-cucumber-cpp-runner
Expand Down
Loading