Skip to content

Commit

Permalink
Release 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kubo committed Dec 6, 2021
1 parent 6cdd2e6 commit 1777101
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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

Expand All @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 1777101

Please sign in to comment.