Skip to content

Commit b4d43d5

Browse files
update to 1.0.3
1 parent 1ed7874 commit b4d43d5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Before getting started, make sure you have the following installed:
3131

3232
## Adding Dependency
3333

34-
1. **Install Meson Build System**: Before integrating the dependency, ensure you have Meson `1.2` or newer installed on your host system. You can install it with this command.
34+
1. **Install Meson Build System**: Before integrating the dependency, ensure you have Meson `1.3` or newer installed on your host system. You can install it with this command.
3535

3636
```sh
3737
python -m pip install meson # to install Meson
@@ -46,7 +46,7 @@ Before getting started, make sure you have the following installed:
4646
# ======================
4747
[wrap-git]
4848
url = https://github.com/fossillogic/fossil-test.git
49-
revision = v1.0.2
49+
revision = v1.0.3
5050

5151
[provide]
5252
fossil-test = fossil_test_dep

code/source/unittest/console.c

Lines changed: 1 addition & 1 deletion
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.2";
20+
static const char* FOSSIL_TEST_VERSION = "1.0.3";
2121
static const char* FOSSIL_TEST_INFO = "Fossil Test is a next-generation unit testing/mockup framework for C/C++.";
2222

2323
// ==============================================================================

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project('Fossil Test', 'c', 'cpp',
2-
meson_version: '>=1.2.0',
2+
meson_version: '>=1.3.0',
33
license: 'MPL-2.0',
4-
version: '1.0.2',
4+
version: '1.0.3',
55
default_options: ['c_std=c18', 'cpp_std=c++20'])
66

77
subdir('code')

0 commit comments

Comments
 (0)