2018-03-29         Paulino Huerta Sanchez     <paulinohuerta@gmail.com>

	* NEWS: Update for version 1.7.8.
	* configure.ac (AC_INIT): Bump version to 1.7.8.
	* (redis_pubsub): Added.
	* redis.c: Improvement theReplyArray function to create an associative array
	when necessary.
	The code of the tipoSubscribe function is now cleaner.
	Use of make_nul_string function when malloc a zero-length is need.
	* doc/CHANGELOG.md: Updated.
	* doc/README.md: Updated.
	* test/testredis.awk: Tests are increased.
	* test/testredis.ok: Tests are increased.

2018-02-28         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* packaging/gawk-redis.spec.in: Add "BuildRequires: gcc"

2018-02-14         Paulino Huerta Sanchez     <paulinohuerta@gmail.com>

	* NEWS: Update for version 1.7.5.
	* configure.ac (AC_INIT): Bump version to 1.7.5.
	* redis.c: Improvement using make_const_user_input function for proccess server reply.
	Use of make_nul_string function when malloc a zero-length is need.
	New function has been added.
	* (redis_configResetStat): Added.
	* doc/CHANGELOG.md: Updated.
	* doc/README.md: Updated.
	* doc/gawk-redis.pdf: Removed.
	* test/testredis.awk: Tests are increased.
	* test/testredis.ok: Tests are increased.

2018-02-13         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* NEWS: Update for version 1.7.4.
	* configure.ac (AC_INIT): Bump version to 1.7.4.
	(AC_PURE_GAWK_EXTENSION): Replace AC_GAWK_EXTENSION, since redis
	does not use gawkextlib.
	* Makefile.am (redis_la_LIBADD): Remove -lgawkextlib.
	* packaging/gawk-redis.spec.in: Upgrade to Fedora standards.
	* redis.c: Add `#define GAWKEXTLIB_NOT_NEEDED' to avoid including
	gawkextlib.h.

2017-12-20         Paulino Huerta Sanchez     <paulinohuerta@gmail.com>

	* NEWS: Update for version 1.7.3.
	* configure.ac (AC_INIT): Bump version to 1.7.3.
	* redis.c: New functions has been added.
	* (redis_hstrlen): Added.
	* (redis_eval): The name evalRedis function has been changed to eval.
	* (redis_echo): Fixed.
	* (redis_punsubscribe): Fixed.
	* po/fr.po: Updated.
	* doc/CHANGELOG.md: Updated.
	* doc/README.md: Fixed and Updated.
	* doc/gawkRedis.png: Image added.
	* test/testredis.awk: Tests are increased.
	* test/testredis.ok: Tests are increased.

2017-12-15         Paulino Huerta Sanchez     <paulinohuerta@gmail.com>

	* NEWS: Update for version 1.7.0.
	* configure.ac (AC_INIT): Bump version to 1.7.0.
	* redis.c: Upgrade to support gawk API versions 1 and 2. Extension
	functions take a 3rd argument in version 2, so use API_FINFO_ARG
	as a placeholder. Use #if tests to comment out lint checks that are
	redundant in version 2.
	(func_table): Use the new API_FUNC and API_FUNC_MAXMIN macros to
	create function records compatible with both API versions.
	* po/fr.po: Updated.
	* doc/CHANGELOG.md: Updated.

2017-12-18         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* po/LINGUAS: Remove "fr", since we don't actually have a French
	translation.
	* po/fr.po: Delete file, since it contains nothing useful.

2017-10-07         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* packaging/gawk-redis.spec.in: Change email address in changelog.

2017-06-14         Paulino Huerta Sanchez     <paulinohuerta@gmail.com>

	* NEWS: Update for version 1.6.0.
	* redis.c: New functions have been added.
	(redis_clientList, redis_clientPause, redis_clientKillId): Added.
	(redis_clientKillAddr, redis_clientKillType, redis_clientSetName): Added.
	(redis_clientGetName): Added.
	(redis_configGet, redis_configSet): Added.
	(redis_slowlog, redis_lastsave, redis_bgsave): Added.
	* configure.ac (AC_INIT): Bump version to 1.6.0 to match the NEWS file.
	* doc/README.md: Updated.
	* po/fr.po: Updated.
	* doc/CHANGELOG.md: Updated.

2016-07-30         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* packaging/gawk-redis.spec.in: Use %{url} in Source0.

2016-07-23         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* redis.c: Fix FSF address.
	* packaging/gawk-redis.spec.in: Upgrade to Fedora standards.

2016-07-22         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* packaging/gawk-redis.spec.in: Fix some rpmlint complaints.

2016-05-31         Paulino Huerta Sanchez     <paulinohuerta@gmail.com>

	* NEWS: Update for version 1.4.0.
	* redis.c (redis_getReply): It is left the second argument as optional.
	(redis_subscribe, redis_psubscribe): Fixed a new argument.
	(redis_getReplyInfo): Added.
	(redis_geoadd, redis_geohash, redis_geopos): Added.
	(redis_geoodist, redis_georadius, redis_georadiusWD): Added.
	(redis_georadiusWC, redis_georadiusWDWC): Added.
	(redis_georadiusbymember, redis_georadiusbymemberWD): Added.
	(redis_georadiusbymemberWC, redis_georadiusbymemberWDWC): Added.
	(redis_spop): Added new count argument.
	(redis_getReplyMass): Added.
	* test/testredis.awk: Test are added for the new features.
	* test/testredis.ok: Test are added for the new features.
	* doc/gawk-redis.pdf: Updated.
	* configure.ac (AC_INIT): Bump version to 1.4.0 to match the NEWS file.
	* po/fr.po: Updated.
	* ChangeLog: Typo in date.
	* doc/CHANGELOG.md: Added.

2015-03-23         Paulino Huerta Sanchez     <paulinohuerta@gmail.com>

	* NEWS: Update for version 1.2.0.
	* redis.c: Is added the "object" function, of the group "keys
	functions".
	Is added the HyperLolog group of functions: pfadd, pfcount, pfmerge.
	* test/testredis.awk: Test are added for the new features.
	* test/testredis.ok: Test are added for the new features.
	* doc/README.doc: Documentation of new features added.
	* doc/gawk-redis.pdf: New documentation of the extension in PDF format.
	* configure.ac (AC_INIT): Bump version to 1.2.0.
	* po/fr.po: Update

2014-12-16         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* configure.ac (AC_INIT): Bump version to 1.1.5 to match the NEWS file.

2014-12-16         Paulino Huerta Sanchez     <paulinohuerta@gmail.com>

	* NEWS: Update for version 1.1.5.
	* redis.c: Is added the redis_info function to the API.
	Use processREPLY function to fix server down detection during a
	command session, and gets major safety on functions of whole API.
	Bug fix on return value on redis_del function.
	Bug fix on the sixth argument of redis_sortLimit function.
	Bug fix on the fourth argument of redis_sort function.
	* test/testredis.awk: Tests are increased.
	* test/testredis.ok: Tests are increased.
	* doc/README.doc: added documentation for redis_info function.
	Minor tweaks in redis_sortStore function.
	* po/fr.po: Update

2014-12-14         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* Makefile.am (redis_la_LDFLAGS): Use common define GAWKEXT_MODULE_FLAGS.
	* redis.c (ext_version): Set to PACKAGE_STRING.

2014-11-19         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* NEWS: Update for version 1.1.0.
	* configure.ac (AC_INIT): Bump version to 1.1.0.
	* po: Update.

2014-11-19         Paulino Huerta Sanchez     <paulinohuerta@gmail.com>

	* NEWS: Update for version 1.0.2.
	* redis.c: is added the prefix "redis_" to all functions of the extension
	* test/testredis.awk: changed the name of the functions, now with "redis_"
	* doc/README.md: changed the name of the functions in the fragments of
	code examples

2014-11-14         Andrew J. Schorr     <ajschorr@fedoraproject.org>

	* NEWS: Update for version 1.0.1.
	* configure.ac (AC_INIT): Bump version to 1.0.1.  Fix m4 quoting bug.

2014-11-08         Paulino Huerta Sanchez     <paulinohuerta@gmail.com>

	This is now a new extension.
