Skip to content

Commit c984012

Browse files
committed
Updated version number.
1 parent c065012 commit c984012

File tree

5 files changed

+22
-6
lines changed

5 files changed

+22
-6
lines changed

Developers_Guide.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ When IP2Location_clear_memory() function is called, and if any other process(es)
7272
After calling IP2Location_clear_memory(), the next call to IP2Location_set_lookup_mode() with IP2LOCATION_SHARED_MEMORY option will result in a new shared memory and will not reuse the old one if one exists and used by any other process. Please refer shm_open and shm_unlink man pages for more info.
7373

7474

75-
Version 8.1.1 25/09/2020
75+
Version 8.1.2 25/09/2020

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
AC_PREREQ(2.59)
2-
AC_INIT([IP2Loc], [8.1.0], [[email protected]])
3-
AM_INIT_AUTOMAKE([IP2Loc], [8.1.0])
2+
AC_INIT([IP2Loc], [8.1.2], [[email protected]])
3+
AM_INIT_AUTOMAKE([IP2Loc], [8.1.2])
44

55
#AC_PREFIX_DEFAULT(/usr/)
66
AM_CONFIG_HEADER([config.h])

contrib/IP2Location.spec

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%define version 8.1.0
1+
%define version 8.1.2
22

33
Name: IP2Location
44
Summary: C library for mapping IP address to geolocation information
@@ -122,6 +122,14 @@ install -p data/IPV6-COUNTRY.BIN %{buildroot}%{_datadir}/%{name}/IPV6-COUNTRY.SA
122122

123123

124124
%changelog
125+
* Fri Sep 25 2020 IP2Location <[email protected]> - 8.1.2
126+
- fixed version number in multiple places
127+
128+
* Fri Sep 25 2020 IP2Location <[email protected]> - 8.1.1
129+
- fixed "IP2Location_get_netspeed" function
130+
- bumped up soname
131+
- updated Developers_Guide.txt
132+
125133
* Thu Sep 24 2020 IP2Location <[email protected]> - 8.1.0-1
126134
- fixed version number and typo
127135

contrib/IP2Location.spec.in

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,14 @@ install -p data/IPV6-COUNTRY.BIN %{buildroot}%{_datadir}/%{name}/IPV6-COUNTRY.SA
122122

123123

124124
%changelog
125+
* Fri Sep 25 2020 IP2Location <[email protected]> - 8.1.2
126+
- fixed version number in multiple places
127+
128+
* Fri Sep 25 2020 IP2Location <[email protected]> - 8.1.1
129+
- fixed "IP2Location_get_netspeed" function
130+
- bumped up soname
131+
- updated Developers_Guide.txt
132+
125133
* Thu Sep 24 2020 IP2Location <[email protected]> - 8.1.0-1
126134
- fixed version number and typo
127135

libIP2Location/IP2Location.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ extern "C" {
5454
#endif
5555
#endif
5656

57-
#define API_VERSION 8.1.0
57+
#define API_VERSION 8.1.2
5858
#define API_VERSION_MAJOR 8
5959
#define API_VERSION_MINOR 1
60-
#define API_VERSION_RELEASE 0
60+
#define API_VERSION_RELEASE 2
6161
#define API_VERSION_NUMERIC (((API_VERSION_MAJOR * 100) + API_VERSION_MINOR) * 100 + API_VERSION_RELEASE)
6262

6363
#define MAX_IPV4_RANGE 4294967295U

0 commit comments

Comments
 (0)