Skip to content

Commit 8798ae2

Browse files
committed
Prepare for 1.0.2
1 parent 8a82131 commit 8798ae2

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Changes.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
1-
* Fixed a number of small issues found by Coverity.
1+
## 1.0.2 - 2014-09-22
22

3+
* Fixed a number of small issues found by Coverity.
34
* When freeing the MMDB struct in `MMDB_close()` we make sure to set the
45
pointers to NULL after freeing the memory they point to. This makes it safe
56
to call `MMDB_close` more than once on the same `MMDB_s` struct
67
pointer. Before this change, calling this function twice on the same pointer
78
could cause the code to free memory that belonged to something else in the
89
process. Patch by Shuxin Yang. GitHub PR #41.
910

11+
1012
## 1.0.1 - 2014-09-03
1113

1214
* Added missing LICENSE and NOTICE files to distribution. No code changes.
1315

16+
1417
## 1.0.0 - 2014-09-02
1518

1619
* Bumped version to 1.0.0. No code changes.

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.0.1], [support@maxmind.com])
5+
AC_INIT([libmaxminddb], [1.0.2], [support@maxmind.com])
66
AC_CONFIG_SRCDIR([include/maxminddb.h])
77
AC_CONFIG_HEADERS([config.h include/maxminddb_config.h])
88

0 commit comments

Comments
 (0)