From 177710191765af31bb1ca3d50b3b90ba0561c646 Mon Sep 17 00:00:00 2001 From: Kubo Takehiro Date: Mon, 6 Dec 2021 13:48:04 +0900 Subject: [PATCH] Release 1.0.5 --- NEWS | 7 +++++++ README.md | 16 ++++++++-------- configure.ac | 2 +- 3 files changed, 16 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index 8179d84..deb883c 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,10 @@ +snzip 1.0.5 - 2021-12-06 + +* Fix a problem to read concatenated framing format data from stdin. (#28) +* Install snunzip and snzcat also by `make install` (#21) +* Add CMakeLists.txt to compile Windows binary. +* Change uncompressed file's file name when its suffix is not expected. + snzip 1.0.4 - 2016-10-02 * Add Apple iWork .iwa format support. (#14) diff --git a/README.md b/README.md index 07625d0..5c22131 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ Installation ### Install from a tar-ball -Download snzip-1.0.4.tar.gz from https://github.com/kubo/snzip/releases, +Download snzip-1.0.5.tar.gz from https://github.com/kubo/snzip/releases, uncompress and untar it, and run configure. - tar xvfz snzip-1.0.4.tar.gz - cd snzip-1.0.4 + tar xvfz snzip-1.0.5.tar.gz + cd snzip-1.0.5 ./configure make make install @@ -34,8 +34,8 @@ If you didn't install snappy under `/usr` or `/usr/local`, you need to specify the location by `--with-snappy` as follows. # install snzip - tar xvfz snzip-1.0.4.tar.gz - cd snzip-1.0.4 + tar xvfz snzip-1.0.5.tar.gz + cd snzip-1.0.5 ./configure --with-snappy=/xxx/yyy/ make make install @@ -53,12 +53,12 @@ You can use `--with-default-format` to change the default compression format. ### Install as a rpm package -We don't provide rpm packages. You need to download snzip-1.0.4.tar.gz +We don't provide rpm packages. You need to download snzip-1.0.5.tar.gz from https://github.com/kubo/snzip/releases, create a rpm package as follows and install it. # The rpm package will be created under $HOME/rpmbuild/RPMS. - rpmbuild -tb snzip-1.0.4.tar.gz + rpmbuild -tb snzip-1.0.5.tar.gz ### Install from the latest source @@ -73,7 +73,7 @@ To use source code in the github repository. ### Install a Windows package. -Download `snzip-1.0.4-win32.zip` or `snzip-1.0.4-win64.zip` from +Download `snzip-1.0.5-win32.zip` or `snzip-1.0.5-win64.zip` from https://github.com/kubo/snzip/releases and copy `snzip.exe` and `snunzip.exe` to a directory in the PATH environment variable. diff --git a/configure.ac b/configure.ac index c0c6ca4..cf22b47 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # The autoconf version must be at least 2.64 to correctly detect # endianess of Mac OS X universal binary. AC_PREREQ(2.64) -AC_INIT([snzip], [1.0.4]) +AC_INIT([snzip], [1.0.5]) AM_INIT_AUTOMAKE