Skip to content

Commit 4969e7d

Browse files
update version number
1 parent 3448f2c commit 4969e7d

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cmake_minimum_required(VERSION 3.13.4)
33

44
# Project metadata
5-
project(FossilIo VERSION 0.1.4 LANGUAGES C CXX)
5+
project(FossilIo VERSION 0.1.5 LANGUAGES C CXX)
66

77
# Set the C and C++ standards
88
set(CMAKE_C_STANDARD 11)

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ To get started with Fossil Io, ensure you have the following installed:
1717
- **Meson Build System**: If you don’t have Meson installed, follow the installation instructions on the official [Meson website](https://mesonbuild.com/Getting-meson.html).
1818
- **CMake Build System**: If you don’t have CMake installed, follow the installation instructions on the official [CMake website](https://cmake.org/getting-started/).
1919

20-
### Adding Fossil Test Dependency
20+
### Adding Fossil Io Dependency
2121

22-
#### Adding Fossil Test Dependency With Meson
22+
#### Adding Fossil Io Dependency With Meson
2323

2424
1. **Install Meson Build System**:
2525
Install Meson version `1.3` or newer:
26+
2627
```sh
2728
python -m pip install meson # To install Meson
2829
python -m pip install --upgrade meson # To upgrade Meson
@@ -37,21 +38,22 @@ To get started with Fossil Io, ensure you have the following installed:
3738
# ======================
3839
[wrap-git]
3940
url = https://github.com/fossillogic/fossil-io.git
40-
revision = v0.1.4
41+
revision = v0.1.5
4142

4243
[provide]
4344
fossil-io = fossil_io_dep
4445
```
4546

4647
3. **Integrate the Dependency**:
4748
In your `meson.build` file, integrate Fossil Io by adding the following line:
49+
4850
```ini
4951
dep = dependency('fossil-io')
5052
```
5153

5254
---
5355

54-
#### Adding Fossil Test Dependency With CMake
56+
#### Adding Fossil Io Dependency With CMake
5557

5658
To use Fossil Io with CMake, follow these steps:
5759

@@ -63,7 +65,7 @@ To use Fossil Io with CMake, follow these steps:
6365
python -m pip install --upgrade cmake # To upgrade CMake
6466
```
6567

66-
2. **Find and Integrate Fossil Test**:
68+
2. **Find and Integrate Fossil Io**:
6769
After installing CMake, you can integrate Fossil Io as a dependency. Add the following lines to your `CMakeLists.txt` file:
6870

6971
```cmake
@@ -81,7 +83,7 @@ To use Fossil Io with CMake, follow these steps:
8183

8284
---
8385

84-
**Note**: For the best experience, always use the latest release of Fossil Test. Visit the [Fossil Io Releases](https://github.com/fossillogic/fossil-io/releases) page for the latest versions.
86+
**Note**: For the best experience, always use the latest release of Fossil Io. Visit the [Fossil Io Releases](https://github.com/fossillogic/fossil-io/releases) page for the latest versions.
8587

8688
## Configure Options
8789

meson.build

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

77
subdir('code')

0 commit comments

Comments
 (0)