Skip to content

Commit

Permalink
release v2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mle86 committed Feb 26, 2017
1 parent 3da1dd9 commit 12b26f2
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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```

Expand Down
2 changes: 1 addition & 1 deletion man/walk.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/walk-2.0.1.sh → src/walk-2.0.2.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion test/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 12b26f2

Please sign in to comment.