Skip to content

Commit

Permalink
Updated version number for minor release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ip2location committed Jun 5, 2023
1 parent 480c758 commit f58223f
Show file tree
Hide file tree
Showing 6 changed files with 12 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.6.0 06/02/2023
Version 8.6.1 06/06/2023
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ(2.59)
AC_INIT([IP2Loc], [8.6.0], [[email protected]])
AC_INIT([IP2Loc], [8.6.1], [[email protected]])
AM_INIT_AUTOMAKE([ subdir-objects ])

AM_CONFIG_HEADER([config.h])
Expand Down
5 changes: 4 additions & 1 deletion contrib/IP2Location.spec
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%define version 8.6.0
%define version 8.6.1

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


%changelog
* Mon Jun 06 2023 IP2Location <[email protected]> - 8.6.1
- fix for bigendian (credit to Remi Collet)

* Thu Jun 02 2023 IP2Location <[email protected]> - 8.6.0
- added district, asn, and as fields

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


%changelog
* Mon Jun 06 2023 IP2Location <[email protected]> - 8.6.1
- fix for bigendian (credit to Remi Collet)

* Thu Jun 02 2023 IP2Location <[email protected]> - 8.6.0
- added district, asn, and as fields

Expand Down
2 changes: 1 addition & 1 deletion ip2location.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ static void print_usage(const char *argv0)

static void print_version()
{
printf("IP2Location version 8.6.0\n");
printf("IP2Location version 8.6.1\n");
}

static void print_footer(FILE *fout, const char *field, const char *format)
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.6.0
#define API_VERSION 8.6.1
#define API_VERSION_MAJOR 8
#define API_VERSION_MINOR 6
#define API_VERSION_RELEASE 0
#define API_VERSION_RELEASE 1
#define API_VERSION_NUMERIC (((API_VERSION_MAJOR * 100) + API_VERSION_MINOR) * 100 + API_VERSION_RELEASE)

#define MAX_IPV4_RANGE 4294967295U
Expand Down

1 comment on commit f58223f

@Tashalealea
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't get it

Please sign in to comment.