From bfcb0350129dd76893bc90399cf37c45812268a2 Mon Sep 17 00:00:00 2001 From: dundargoc Date: Wed, 11 Sep 2024 14:55:19 +0200 Subject: [PATCH] version 2.1.2 --- CMakeLists.txt | 2 +- Changes | 8 ++++++++ configure.ac | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7b753d5..209fc2d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(unibilium LANGUAGES C) +project(unibilium LANGUAGES C VERSION 2.1.2) file(GLOB SRC_FILES ${PROJECT_SOURCE_DIR}/*.c) add_library(unibilium ${SRC_FILES}) diff --git a/Changes b/Changes index 5764a7f..e17fa7a 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,11 @@ +2.1.2 2024-07-11 + - Add build and deps directories to gitignore + - build(cmake): allow user to set `TERMINFO_DIRS` (#25) + - Do not stop searching on access denied. + - build: bump minimum required version (#22) + - build: Add a minimal configure.ac + - doc: update issue tracker URL #20 + 2.1.1 2021-04-04 - Makefile: fix undefined references with static builds (#19) diff --git a/configure.ac b/configure.ac index 13cb888..b572f61 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([MAJOR], [2]) m4_define([MINOR], [1]) -m4_define([PATCH], [1]) +m4_define([PATCH], [2]) AC_INIT([unibilium], [MAJOR.MINOR.PATCH]) AC_CONFIG_FILES([Makefile])