Skip to content

Commit

Permalink
Merge pull request #36 from masatake/version-4.93.2
Browse files Browse the repository at this point in the history
Version 4.93.2
  • Loading branch information
masatake authored May 8, 2019
2 parents 2514875 + 7412e74 commit 2b605f5
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
6 changes: 5 additions & 1 deletion 00DIST
Original file line number Diff line number Diff line change
Expand Up @@ -4932,5 +4932,9 @@ July 14, 2018

Fix a broken symbolic link.

4.93.2 May 8, 2019

Update the version number embedded in lsof executable.

Masatake YAMATO <[email protected]>, a member of lsof-org
May 7, 2019
May 8, 2019
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ part of them. The current status of maintaince is as follows:
<dt>linux</dt>
<dd>fully maintained, and tested on Travis CI</dd>
<dt>darwin</dt>
<dd>not maintained, and tested on Travis CI</dd>
<dd>not maintained, but tested on Travis CI</dd>
</dl>

If you are interested in maintaining a dialect, let us know via the
Expand Down
11 changes: 10 additions & 1 deletion check.bash
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
set -e
set -ex

echo $1
echo $BASH_VERSION
shopt
export -p

./lsof -v

#
# check that the version numbers are updated
#
expected_version=$(sed '/VN/s/.ds VN \([0-9.a-z]*\)/\1/' ./version)
actual_version=$(./lsof -v 2>&1 | sed -ne 's/^ *revision: *\([0-9.a-z]*\)/\1/p')
dist_version=$(sed -ne 's/^\([0-9][0-9.a-z]*\) .*$/\1/p' 00DIST | tail -1)
test "${expected_version}" = "${actual_version}"
test "${expected_version}" = "${dist_version}"
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
.ds VN 4.92.1
.ds VN 4.93.2

0 comments on commit 2b605f5

Please sign in to comment.