diff --git a/README.md b/README.md index dffe746..5465e0d 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ Copy gztool.c to the directory where you compiled zlib, and do: Usage ===== - gztool (v1.4.2) + gztool (v1.4.3) GZIP files indexer, compressor and data retriever. Create small indexes for gzipped files and use them for quick and random-positioned data extraction. @@ -378,7 +378,7 @@ Please note that not all stored numbers are 64-bit long. This is because some co With 64 bit long numbers, the index could potentially manage files up to 2^64 = 16 EiB (16 777 216 TiB). -###Line number counting +#### Line number counting Regarding line number counting (`-[xX]`), note that gztool's index counts last line in uncompressed data even if the last char isn't a newline char - whilst `wc` command will not count it in this case!. Nonetheless, line counting when extracting data with `-[bLtT]` does follow `wc` convention - this is in order to not obtain different (+/-1) results reading `gztool` output info and `wc` counts. @@ -430,7 +430,7 @@ Other interesting links Version ======= -This version is **v1.4.2**. +This version is **v1.4.3**. Please, read the *Disclaimer*. In case of any errors, please open an [issue](https://github.com/circulosmeos/gztool/issues). diff --git a/configure.ac b/configure.ac index 023223e..c9dd4a5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([gztool], [1.4.2], [roberto.s.galende@gmail.com]) +AC_INIT([gztool], [1.4.3], [roberto.s.galende@gmail.com]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) AC_PROG_CC AC_PROG_CC_C99 diff --git a/gztool.1 b/gztool.1 index b98e609..f9028b2 100644 --- a/gztool.1 +++ b/gztool.1 @@ -4,7 +4,7 @@ .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) -.TH gztool 1 "Sep 11 2021" "gztool v1.4.2" +.TH gztool 1 "Sep 30 2021" "gztool v1.4.3" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: diff --git a/gztool.c b/gztool.c index cc884ab..d44b1b7 100644 --- a/gztool.c +++ b/gztool.c @@ -123,7 +123,7 @@ #include #else #define PACKAGE_NAME "gztool" - #define PACKAGE_VERSION "1.4.2" + #define PACKAGE_VERSION "1.4.3" #endif #define _XOPEN_SOURCE 500 // expose 's pread()