Skip to content

Commit 03ac932

Browse files
committed
Prepare for 1.0.4
1 parent a83721b commit 03ac932

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Changes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
1+
## 1.0.4 - 2014-01-02
2+
13
* If you used a non-integer string as an array index when doing a lookup with
24
`MMDB_get_value`, `MMDB_vget_value`, or `MMDB_aget_value`, the first element
35
of the array would be returned rather than an error. A
46
`MMDB_LOOKUP_PATH_DOES_NOT_MATCH_DATA_ERROR` error will now be returned.
7+
GitHub #61.
58
* If a number larger than `LONG_MAX` was used in the same functions,
69
`LONG_MAX` would have been used in the lookup. Now a
710
`MMDB_INVALID_LOOKUP_PATH_ERROR` error will be returned.
811
* Visual Studio build files were added for unit tests and some compatibility
912
issues with the tests were fixed.
13+
* Visual Studio project was updated to use property pages. Patch by Andre.
14+
GitHub #69.
1015
* A test failure in `t/compile_c++_t.pl` on new installs was fixed.
1116

1217

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

include/maxminddb.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ extern "C" {
2020
#include <winsock2.h>
2121
#include <ws2tcpip.h>
2222
/* libmaxminddb package version from configure */
23-
#define PACKAGE_VERSION "1.0.3"
23+
#define PACKAGE_VERSION "1.0.4"
2424

2525
typedef ADDRESS_FAMILY sa_family_t;
2626

0 commit comments

Comments
 (0)