Skip to content

Commit

Permalink
prepare for v1.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
likle committed Feb 3, 2024
1 parent 35ee006 commit f45a23a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.9.2)

# set project name
project(cwalk
VERSION 1.2.8
VERSION 1.2.9
DESCRIPTION "A simple path library"
HOMEPAGE_URL "https://likle.github.io/cwalk/"
LANGUAGES C)
Expand Down
2 changes: 1 addition & 1 deletion clib.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cwalk",
"repo": "likle/cwalk",
"version": "v1.2.8",
"version": "v1.2.9",
"decription": "libcwalk - path library for C/C++",
"src": [
"src/cwalk.c",
Expand Down
10 changes: 7 additions & 3 deletions cwalk.pc.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
prefix="@CMAKE_INSTALL_PREFIX@"
prefix=@CMAKE_INSTALL_PREFIX@
exec_prefix=@CMAKE_INSTALL_PREFIX@
libdir=@CMAKE_INSTALL_FULL_LIBDIR@
includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@

Name: @PROJECT_NAME@
Description: @CMAKE_PROJECT_DESCRIPTION@
URL: @CMAKE_PROJECT_HOMEPAGE_URL@
Version: @PROJECT_VERSION@
Cflags: -I"${prefix}/include"
Libs: -L"${prefix}/lib" -lcwalk
Cflags: -I"${includedir}"
Libs: -L"${libdir}" -lcwalk
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('cwalk', 'c',
license: 'MIT',
version: '1.2.8',
version: '1.2.9',
meson_version: '>= 0.57.0'
)

Expand Down

0 comments on commit f45a23a

Please sign in to comment.