Skip to content

Commit f866740

Browse files
fix version number bug
1 parent fe2329a commit f866740

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Add the `fossil-tofu.wrap` file in your `subprojects` directory and include the
2929
```ini
3030
[wrap-git]
3131
url = https://github.com/fossillogic/fossil-tofu.git
32-
revision = v0.2.1
32+
revision = v0.2.3
3333

3434
[provide]
3535
dependency_names = fossil-tofu

code/logic/meson.build

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
dir = include_directories('.')
2-
cc = meson.get_compiler('c')
32
add_project_arguments('-D_POSIX_C_SOURCE=200112L', language: 'c')
43
add_project_arguments('-D_POSIX_C_SOURCE=200112L', language: 'cpp')
54

@@ -23,8 +22,7 @@ fossil_tofu_lib = library('fossil_tofu',
2322
'tofu.c'
2423
),
2524
install: true,
26-
include_directories: dir,
27-
dependencies: [cc.find_library('m', required: false)])
25+
include_directories: dir)
2826

2927
fossil_tofu_dep = declare_dependency(
3028
link_with: [fossil_tofu_lib],

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project('Fossil Tofu', 'c', 'cpp',
22
meson_version: '>=1.8.0',
33
license: 'Apache-2.0',
4-
version: '0.2.2',
4+
version: '0.2.3',
55
default_options: [
66
'c_std=c11,c18',
77
'cpp_std=c++20',

0 commit comments

Comments
 (0)