diff --git a/CHANGELOG b/CHANGELOG index 41b821a..a206fa3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -next +v2.0.2 (February 2017) - Fix -c archive creation for 7z/zip/rar/ar - Fix non-root extracting of zip archives with different file owners - Preserve owner/mode/timestamps in .a archives (ar) diff --git a/Makefile b/Makefile index d8a1af1..d48b8d3 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ install: chmod 0644 /usr/local/share/man/man1/walk.1 gzip -f /usr/local/share/man/man1/walk.1 - cp src/walk-2.0.1.sh $(DEST) + cp src/walk-2.0.2.sh $(DEST) chmod 0755 $(DEST) chown $(CHOWN) $(DEST) diff --git a/README.md b/README.md index 2bb9589..7104cbd 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # walk(1) - enter and manipulate archive files like directories -Version 2.0.1, May 2016 +Version 2.0.2, February 2017 ```walk [-cyA] [--] ARCHIVE``` diff --git a/man/walk.1 b/man/walk.1 index 19100d4..f9d5940 100644 --- a/man/walk.1 +++ b/man/walk.1 @@ -1,4 +1,4 @@ -.TH WALK "1" "May 2016" "walk 2.0.1" "walk" +.TH WALK "1" "February 2017" "walk 2.0.2" "walk" .SH NAME walk \- enter and manipulate archive files like directories diff --git a/src/walk-2.0.1.sh b/src/walk-2.0.2.sh similarity index 98% rename from src/walk-2.0.1.sh rename to src/walk-2.0.2.sh index 82713e3..054ed85 100755 --- a/src/walk-2.0.1.sh +++ b/src/walk-2.0.2.sh @@ -1,9 +1,9 @@ #!/bin/sh set -e -# walk v2.0.1 +# walk v2.0.2 # -# Copyright (C) 2016 Maximilian L. Eul +# Copyright (C) 2017 Maximilian L. Eul # This file is part of walk. # # walk is free software: you can redistribute it and/or modify @@ -97,7 +97,7 @@ syntaxline="syntax: $prog [-cyA] ARCHIVE " help () { printf '%s\n' "$syntaxline" echo "" - echo "walk v2.0.1 will unpack an archive file into a new directory of the" + echo "walk v2.0.2 will unpack an archive file into a new directory of the" echo "same name and spawn a new shell within that directory. After said" echo "shell terminates, walk will ask you whether you want to re-create" echo "the archive from that directory and whether you want to delete the" diff --git a/test/config.sh b/test/config.sh index b405d75..6986eab 100644 --- a/test/config.sh +++ b/test/config.sh @@ -2,7 +2,7 @@ umask 0022 -WALK="$(readlink -f -- "$HERE/../src/walk-2.0.1.sh")" +WALK="$(readlink -f -- "$HERE/../src/walk-2.0.2.sh")" # Code duplication: this block of constants is copied from walk.sh. EXIT_SYNTAX=1