Skip to content
Closed
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.0.0 (2025-12-07)

### Features

* add cpp-cli stub ([95b8ba4](https://github.com/xebis-test/cpp-cli/commit/95b8ba4c4dd83b451b89e0ad80823c6684d9ccc4))
* test ([6adb729](https://github.com/xebis-test/cpp-cli/commit/6adb729e58a1ab418757eb15a44198c489f22594))

## [0.1.0](https://github.com/gh-ci/cpp-cli/compare/v0.0.0...v0.1.0) (2025-12-06)

### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cpp-cli

Hello world C++ CLI application.
Hello world C++ CLI application

## Features

Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <iostream>

int main() {
std::cout << "Hello world" << std::endl;
std::cout << "Hello test" << std::endl;
return 0;
}
2 changes: 1 addition & 1 deletion tests/test_integration.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
output=$(./cpp-cli)
if [[ "$output" == "Hello world" ]]; then
if [[ "$output" == "Hello test" ]]; then
echo "[PASS] Output correct."
else
echo "[FAIL] Output = $output"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_unit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ std::string run_app() {
}

TEST_CASE("Program prints correct output") {
REQUIRE(run_app() == "Hello world\n");
REQUIRE(run_app() == "Hello test\n");
}