Skip to content

Commit deb9240

Browse files
committed
v1.1.0
1 parent fe609a8 commit deb9240

File tree

6 files changed

+23
-8
lines changed

6 files changed

+23
-8
lines changed

.cgtest.full.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* CGTest v1.0.0 - configuration file
4+
* CGTest v1.1.0 - configuration file
55
*
66
* A multi-language offline batch test runner for CodinGame (or other) solo I/O puzzles.
77
* (c) 2022, by Balint Toth (TBali)

.cgtest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/**
4-
* CGTest v1.0.0 - configuration file
4+
* CGTest v1.1.0 - configuration file
55
*
66
* A multi-language offline batch test runner for CodinGame (or other) solo I/O puzzles.
77
* (c) 2022, by Balint Toth [TBali]

.markdownlint.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"default" : true,
33
"MD007" : { "indent" : 4 },
4-
"MD013" : false
4+
"MD013" : false,
5+
"MD024" : false
56
}

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
- Nothing yet.
13+
14+
### Changed
15+
16+
- Nothing yet.
17+
18+
### Fixed
19+
20+
- Nothing yet.
21+
22+
## [v1.1.0](https://github.com/tbali0524/cgtest/releases/v1.1.0) - 2022-07-25
23+
24+
### Added
25+
1226
- `--stats` command-line option added.
13-
- 100+ CG puzzle test cases added.
27+
- 150+ CG puzzle test cases added.
1428
- Fortran default config and sample code added.
1529

1630
### Changed
@@ -23,6 +37,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2337
- Shebang added to the bash sample solution.
2438
- Added -lm to default gcc build command.
2539

26-
## [v1.0.0](https://github.com/tbali0524/cgtest) - 2022-07-23
40+
## [v1.0.0](https://github.com/tbali0524/cgtest/releases/v1.0.0) - 2022-07-23
2741

2842
Initial release.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CGTest v1.0.0
1+
# CGTest v1.1.0
22

33
A multi-language offline batch test runner for `CodinGame` (or other) solo I/O puzzles.
44

cgtest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?php
33

44
/**
5-
* CGTest v1.0.0
5+
* CGTest v1.1.0
66
*
77
* A multi-language offline batch test runner for CodinGame (or other) solo I/O puzzles.
88
* (c) 2022, by Balint Toth [TBali]
@@ -42,7 +42,7 @@
4242
$errorTag = '[ERROR] ';
4343
// --------------------------------------------------------------------
4444
// print application title, check php version
45-
$title = 'CGTest v1.0.0' . PHP_EOL
45+
$title = 'CGTest v1.1.0' . PHP_EOL
4646
. 'A multi-language offline batch test runner for CodinGame (or other) solo I/O puzzles' . PHP_EOL
4747
. '(c) 2022, by Balint Toth [TBali]' . PHP_EOL;
4848
echo $title . PHP_EOL;

0 commit comments

Comments
 (0)