aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi92@disroot.org>2026-04-05 12:31:25 +0200
committerXavier Del Campo Romero <xavi92@disroot.org>2026-04-05 13:00:20 +0200
commit509f6458d9a881f01e8a0c62b747af8736cad606 (patch)
tree47b478d836435f31bd999878247b1e9812530abc
parentfd6379c3e339b2ce37b3369c6d47c0f77a7691d4 (diff)
downloaddynstr-master.tar.gz
Bump to version 0.1.1HEADv0.1.1master
-rw-r--r--CMakeLists.txt2
-rw-r--r--Makefile2
-rw-r--r--dynstr.pc2
3 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 1cd6c0c..eda4ee3 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -20,7 +20,7 @@ else()
cmake_minimum_required(VERSION 3.0)
endif()
-project(dynstr LANGUAGES C VERSION 0.1.0)
+project(dynstr LANGUAGES C VERSION 0.1.1)
add_library(${PROJECT_NAME} "dynstr.c")
target_include_directories(${PROJECT_NAME} PUBLIC "include")
install(TARGETS ${PROJECT_NAME})
diff --git a/Makefile b/Makefile
index 633e21f..cab8ad7 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ pkgcfgdir = $(libdir)/pkgconfig
PROJECT = libdynstr
MAJOR_VERSION = 0
MINOR_VERSION = 1
-PATCH_VERSION = 0
+PATCH_VERSION = 1
VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(PATCH_VERSION)
PROJECT_A = $(PROJECT).a
PROJECT_SO = $(PROJECT).so.$(VERSION)
diff --git a/dynstr.pc b/dynstr.pc
index 0f6f48a..da2003e 100644
--- a/dynstr.pc
+++ b/dynstr.pc
@@ -6,6 +6,6 @@ libdir=${exec_prefix}/lib
Name: dynstr
Url: https://gitea.privatedns.org/xavi/dynstr
Description: Minimal library that provides dynamic strings using plain C99.
-Version: 0.1.0
+Version: 0.1.1
Cflags: -I${includedir}
Libs: -L${libdir} -ldynstr