Skip to content

Commit 47076a6

Browse files
authored
Merge pull request #366 from maxmind/greg/eng-574-release-of-libmaxminddb-is-done
Release 1.12.0
2 parents 36e7226 + 0ff5a5b commit 47076a6

File tree

8 files changed

+14
-8
lines changed

8 files changed

+14
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.9...3.30)
22

33
project(maxminddb
44
LANGUAGES C
5-
VERSION 1.11.0
5+
VERSION 1.12.1
66
)
77
set(MAXMINDDB_SOVERSION 0.0.7)
88
set(CMAKE_C_STANDARD 99)

Changes.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## 1.12.0
1+
## 1.12.1 - 2025-01-08
2+
3+
* Added missing `cmake_uninstall.cmake.in` to the source distribution. This
4+
was missing from 1.12.0, causing CMake builds to fail. Reported by Marcel
5+
Raad. GitHub #367.
6+
7+
## 1.12.0 - 2025-01-07
28

39
* Fixed memory leaks in `MMDB_open()`. These could happen with invalid
410
databases or in error situations such as failing to allocate memory. As

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ endif
1818

1919
EXTRA_DIST = doc Changes.md LICENSE NOTICE README.md \
2020
CMakeLists.txt t/CMakeLists.txt bin/CMakeLists.txt \
21-
include/maxminddb_config.h.cmake.in
21+
cmake_uninstall.cmake.in include/maxminddb_config.h.cmake.in
2222

2323
dist-hook:
2424
dev-bin/make-man-pages.pl $(distdir)

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2013-2024 MaxMind, Inc.
1+
Copyright 2013-2025 MaxMind, Inc.
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ Use `make safedist` to check the resulting tarball.
150150

151151
# Copyright and License
152152

153-
Copyright 2013-2024 MaxMind, Inc.
153+
Copyright 2013-2025 MaxMind, Inc.
154154

155155
Licensed under the Apache License, Version 2.0 (the "License");
156156
you may not use this file except in compliance with the License.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.63])
5-
AC_INIT([libmaxminddb], [1.11.0], [[email protected]])
5+
AC_INIT([libmaxminddb], [1.12.1], [[email protected]])
66
AC_CONFIG_SRCDIR([include/maxminddb.h])
77
AC_CONFIG_HEADERS([config.h include/maxminddb_config.h])
88

doc/libmaxminddb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,7 @@ Rolsky ([email protected]).
883883
884884
# COPYRIGHT AND LICENSE
885885
886-
Copyright 2013-2024 MaxMind, Inc.
886+
Copyright 2013-2025 MaxMind, Inc.
887887
888888
Licensed under the Apache License, Version 2.0 (the "License");
889889
you may not use this file except in compliance with the License.

doc/mmdblookup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Rolsky ([email protected]).
8686

8787
# COPYRIGHT AND LICENSE
8888

89-
Copyright 2013-2024 MaxMind, Inc.
89+
Copyright 2013-2025 MaxMind, Inc.
9090

9191
Licensed under the Apache License, Version 2.0 (the "License");
9292
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)