Skip to content

Commit

Permalink
fixed test case, typo and portability of fseek()
Browse files Browse the repository at this point in the history
  • Loading branch information
ip2location committed Nov 12, 2021
1 parent 491f531 commit 79535dd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 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.4.0 20/05/2021
Version 8.4.1 12/11/2021
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.4.0], [[email protected]])
AC_INIT([IP2Loc], [8.4.1], [[email protected]])
AM_INIT_AUTOMAKE([ subdir-objects ])

AM_CONFIG_HEADER([config.h])
Expand Down
3 changes: 3 additions & 0 deletions contrib/IP2Location.spec
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
* Fri Nov 12 2021 IP2Location <[email protected]> - 8.4.1
- fixed test case, typo and portability of fseek()

* Thu May 20 2021 IP2Location <[email protected]> - 8.4.0
- added supports for DB25 to display address type and category 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
* Fri Nov 12 2021 IP2Location <[email protected]> - 8.4.1
- fixed test case, typo and portability of fseek()

* Thu May 20 2021 IP2Location <[email protected]> - 8.4.0
- added supports for DB25 to display address type and category fields

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.4.0
#define API_VERSION 8.4.1
#define API_VERSION_MAJOR 8
#define API_VERSION_MINOR 4
#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

0 comments on commit 79535dd

Please sign in to comment.