Skip to content

Commit e474fed

Browse files
Merge pull request #4 from dreamer-coding-555/fix_format
2 parents 8c5eaf4 + 2fe62a3 commit e474fed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Before getting started, make sure you have the following installed:
4040
# ======================
4141
[wrap-git]
4242
url = https://github.com/dreamer-coding-555/fossil-test.git
43-
revision = v1.0.0
43+
revision = v1.0.1
4444

4545
[provide]
4646
fossil-test = fossil_test_dep

code/source/unittest/console.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Organization: Fossil Logic
1717

1818
static const char* FOSSIL_TEST_NAME = "Fossil Test";
1919
static const char* FOSSIL_TEST_AUTH = "Michael Gene Brockus (Dreamer)";
20-
static const char* FOSSIL_TEST_VERSION = "1.0.0";
20+
static const char* FOSSIL_TEST_VERSION = "1.0.1";
2121
static const char* FOSSIL_TEST_INFO = "Fossil Test is a next-generation unit testing/mockup framework for C/C++.";
2222

2323
// ==============================================================================
@@ -443,7 +443,7 @@ void fossil_test_io_asserted(xassert_info *assume) {
443443
fossil_test_cout("red", "function : -> %s\n", assume->func);
444444
fossil_test_cout("red", "=========================================================================================[F]=\n");
445445
} else if (_CLI.verbose_level == 1) {
446-
fossil_test_cout("red", "name: %s line: -> %d msg: -> %s", assume->func, assume->line, assume->message);
446+
fossil_test_cout("red", "name: %s line: -> %d msg: -> %s\n", assume->func, assume->line, assume->message);
447447
} else {
448448
fossil_test_cout("red", "[#]");
449449
}

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project('Fossil Test', 'c', 'cpp',
22
meson_version: '>=1.2.0',
33
license: 'MPL-2.0',
4-
version: '1.0.0',
4+
version: '1.0.1',
55
default_options: ['c_std=c18', 'cpp_std=c++20'])
66

77
subdir('code')

0 commit comments

Comments
 (0)