Skip to content

Commit

Permalink
v1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
circulosmeos committed Sep 30, 2021
1 parent 8c02c5b commit f79e53a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.

Expand Down Expand Up @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([gztool], [1.4.2], [[email protected]])
AC_INIT([gztool], [1.4.3], [[email protected]])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
AC_PROG_CC_C99
Expand Down
2 changes: 1 addition & 1 deletion gztool.1
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion gztool.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
#include <config.h>
#else
#define PACKAGE_NAME "gztool"
#define PACKAGE_VERSION "1.4.2"
#define PACKAGE_VERSION "1.4.3"
#endif

#define _XOPEN_SOURCE 500 // expose <unistd.h>'s pread()
Expand Down

0 comments on commit f79e53a

Please sign in to comment.