We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c22978 commit 03795ffCopy full SHA for 03795ff
.github/workflows/ci.yml
@@ -33,6 +33,6 @@ jobs:
33
name: libsemver
34
path: ./
35
- name: Set Permissions
36
- run: chmod +x ./build/lib/libsemver.so*
+ run: chmod +x ./build/lib/libsemver-1.so*
37
- name: Test
38
run: ninja -C build test
README.md
@@ -14,6 +14,12 @@ SemVer is a GObject-based library for creating and handling Semantic Versions (h
14
15
## Example Usage
16
17
+If using Meson, simply add the dependency:
18
+
19
+```meson
20
+dependency('semver-1', version: '>= 1.0.0')
21
+```
22
23
Creating a new `Version` object:
24
25
```vala
0 commit comments