Skip to content

Commit

Permalink
chore: release 0.8.1 (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
Disservin authored Apr 28, 2024
1 parent 8ac850d commit 1503439
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions man
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FAST-CHESS (alpha-0.8.0) General Commands Manual FAST-CHESS (alpha-0.8.0)
FAST-CHESS (alpha-0.8.1) General Commands Manual FAST-CHESS (alpha-0.8.1)

NAME
fast-chess - a command-line tool for managing chess games with engines
Expand Down Expand Up @@ -210,4 +210,4 @@ COPYRIGHT
This software is licensed under the MIT license. See the LICENSE file for details.

VERSION
fast-chess version alpha-0.8.0
fast-chess version alpha-0.8.1
2 changes: 1 addition & 1 deletion src/cli/cli.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class OptionsParser {
std::string month, day, year;
std::stringstream ss, date(__DATE__); // {month} {date} {year}

ss << "fast-chess alpha-0.8.0-";
ss << "fast-chess alpha-0.8.1-";
#ifdef GIT_DATE
ss << GIT_DATE;
#else
Expand Down
6 changes: 3 additions & 3 deletions src/cli/man.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
namespace fast_chess::man {
inline char man[] = {
0x46, 0x41, 0x53, 0x54, 0x2d, 0x43, 0x48, 0x45, 0x53, 0x53, 0x20, 0x28, 0x61, 0x6c, 0x70, 0x68,
0x61, 0x2d, 0x30, 0x2e, 0x37, 0x2e, 0x30, 0x29, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x61, 0x2d, 0x30, 0x2e, 0x38, 0x2e, 0x31, 0x29, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x20, 0x43, 0x6f, 0x6d, 0x6d,
0x61, 0x6e, 0x64, 0x73, 0x20, 0x4d, 0x61, 0x6e, 0x75, 0x61, 0x6c, 0x20, 0x20, 0x20, 0x20, 0x20,
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x46, 0x41, 0x53, 0x54, 0x2d, 0x43, 0x48, 0x45,
0x53, 0x53, 0x20, 0x28, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2d, 0x30, 0x2e, 0x37, 0x2e, 0x30, 0x29,
0x53, 0x53, 0x20, 0x28, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2d, 0x30, 0x2e, 0x38, 0x2e, 0x31, 0x29,
0x0a, 0x0a, 0x4e, 0x41, 0x4d, 0x45, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x66, 0x61,
0x73, 0x74, 0x2d, 0x63, 0x68, 0x65, 0x73, 0x73, 0x20, 0x2d, 0x20, 0x61, 0x20, 0x63, 0x6f, 0x6d,
0x6d, 0x61, 0x6e, 0x64, 0x2d, 0x6c, 0x69, 0x6e, 0x65, 0x20, 0x74, 0x6f, 0x6f, 0x6c, 0x20, 0x66,
Expand Down Expand Up @@ -505,6 +505,6 @@ inline char man[] = {
0x65, 0x20, 0x66, 0x6f, 0x72, 0x20, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x0a, 0x0a,
0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x0a, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
0x66, 0x61, 0x73, 0x74, 0x2d, 0x63, 0x68, 0x65, 0x73, 0x73, 0x20, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x20, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2d, 0x30, 0x2e, 0x37, 0x2e, 0x30, 0x0a};
0x6f, 0x6e, 0x20, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2d, 0x30, 0x2e, 0x38, 0x2e, 0x31, 0x0a};
inline unsigned int man_len = 8063;
} // namespace fast_chess::man

0 comments on commit 1503439

Please sign in to comment.