Skip to content

Commit

Permalink
Updated version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
ip2location committed Sep 25, 2020
1 parent c065012 commit c984012
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Developers_Guide.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,4 @@ When IP2Location_clear_memory() function is called, and if any other process(es)
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.


Version 8.1.1 25/09/2020
Version 8.1.2 25/09/2020
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
AC_PREREQ(2.59)
AC_INIT([IP2Loc], [8.1.0], [[email protected]])
AM_INIT_AUTOMAKE([IP2Loc], [8.1.0])
AC_INIT([IP2Loc], [8.1.2], [[email protected]])
AM_INIT_AUTOMAKE([IP2Loc], [8.1.2])

#AC_PREFIX_DEFAULT(/usr/)
AM_CONFIG_HEADER([config.h])
Expand Down
10 changes: 9 additions & 1 deletion contrib/IP2Location.spec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%define version 8.1.0
%define version 8.1.2

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


%changelog
* Fri Sep 25 2020 IP2Location <[email protected]> - 8.1.2
- fixed version number in multiple places

* Fri Sep 25 2020 IP2Location <[email protected]> - 8.1.1
- fixed "IP2Location_get_netspeed" function
- bumped up soname
- updated Developers_Guide.txt

* Thu Sep 24 2020 IP2Location <[email protected]> - 8.1.0-1
- fixed version number and typo

Expand Down
8 changes: 8 additions & 0 deletions contrib/IP2Location.spec.in
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,14 @@ install -p data/IPV6-COUNTRY.BIN %{buildroot}%{_datadir}/%{name}/IPV6-COUNTRY.SA


%changelog
* Fri Sep 25 2020 IP2Location <[email protected]> - 8.1.2
- fixed version number in multiple places

* Fri Sep 25 2020 IP2Location <[email protected]> - 8.1.1
- fixed "IP2Location_get_netspeed" function
- bumped up soname
- updated Developers_Guide.txt

* Thu Sep 24 2020 IP2Location <[email protected]> - 8.1.0-1
- fixed version number and typo

Expand Down
4 changes: 2 additions & 2 deletions libIP2Location/IP2Location.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ extern "C" {
#endif
#endif

#define API_VERSION 8.1.0
#define API_VERSION 8.1.2
#define API_VERSION_MAJOR 8
#define API_VERSION_MINOR 1
#define API_VERSION_RELEASE 0
#define API_VERSION_RELEASE 2
#define API_VERSION_NUMERIC (((API_VERSION_MAJOR * 100) + API_VERSION_MINOR) * 100 + API_VERSION_RELEASE)

#define MAX_IPV4_RANGE 4294967295U
Expand Down

0 comments on commit c984012

Please sign in to comment.