From db7a5e13e2d41ee52e1bebf6a64e6140852cf083 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Wed, 21 Aug 2024 10:52:25 -0700 Subject: [PATCH 1/3] Update Changes.md --- Changes.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Changes.md b/Changes.md index 5814d95a..c3e3ffef 100644 --- a/Changes.md +++ b/Changes.md @@ -1,7 +1,10 @@ -## 1.11.0 +## 1.11.0 - 2024-08-21 -* When building with CMake, the man pages will now be generated and installed. - Requested by Thomas Klausner. GitHub #351. +* When building with CMake, the man pages will now be generated and + installed. Requested by Thomas Klausner. GitHub #351. +* Removed unnecessary `$` directory from + `target_include_directories` in the CMake build configuration. This is + a private build directory. Pull request by Ankur Verma. GitHub #354. ## 1.10.0 - 2024-06-10 From d8f073da2d1e48d9b4c806ce9eaa85e50ea68271 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Wed, 21 Aug 2024 10:59:22 -0700 Subject: [PATCH 2/3] Add generated to gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 2c8bd358..1fb42bb7 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ /config.* /configure /depcomp +/generated /include/maxminddb_config.h /install-sh /libmaxminddb-* From 24df335085318a26a5f3aafba12fec3cd322e570 Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Wed, 21 Aug 2024 10:59:37 -0700 Subject: [PATCH 3/3] Bumped version to 1.11.0 --- CMakeLists.txt | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6be537f9..0ee246b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.9) project(maxminddb LANGUAGES C - VERSION 1.10.0 + VERSION 1.11.0 ) set(MAXMINDDB_SOVERSION 0.0.7) set(CMAKE_C_STANDARD 99) diff --git a/configure.ac b/configure.ac index a56e406f..883f2f9a 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.63]) -AC_INIT([libmaxminddb], [1.10.0], [support@maxmind.com]) +AC_INIT([libmaxminddb], [1.11.0], [support@maxmind.com]) AC_CONFIG_SRCDIR([include/maxminddb.h]) AC_CONFIG_HEADERS([config.h include/maxminddb_config.h])