Skip to content

Commit 2b605f5

Browse files
authored
Merge pull request lsof-org#36 from masatake/version-4.93.2
Version 4.93.2
2 parents 2514875 + 7412e74 commit 2b605f5

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

00DIST

+5-1
Original file line numberDiff line numberDiff line change
@@ -4932,5 +4932,9 @@ July 14, 2018
49324932

49334933
Fix a broken symbolic link.
49344934

4935+
4.93.2 May 8, 2019
4936+
4937+
Update the version number embedded in lsof executable.
4938+
49354939
Masatake YAMATO <yamato@redhat.com>, a member of lsof-org
4936-
May 7, 2019
4940+
May 8, 2019

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ part of them. The current status of maintaince is as follows:
2424
<dt>linux</dt>
2525
<dd>fully maintained, and tested on Travis CI</dd>
2626
<dt>darwin</dt>
27-
<dd>not maintained, and tested on Travis CI</dd>
27+
<dd>not maintained, but tested on Travis CI</dd>
2828
</dl>
2929

3030
If you are interested in maintaining a dialect, let us know via the

check.bash

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
set -e
1+
set -ex
22

33
echo $1
44
echo $BASH_VERSION
55
shopt
66
export -p
77

88
./lsof -v
9+
10+
#
11+
# check that the version numbers are updated
12+
#
13+
expected_version=$(sed '/VN/s/.ds VN \([0-9.a-z]*\)/\1/' ./version)
14+
actual_version=$(./lsof -v 2>&1 | sed -ne 's/^ *revision: *\([0-9.a-z]*\)/\1/p')
15+
dist_version=$(sed -ne 's/^\([0-9][0-9.a-z]*\) .*$/\1/p' 00DIST | tail -1)
16+
test "${expected_version}" = "${actual_version}"
17+
test "${expected_version}" = "${dist_version}"

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
.ds VN 4.92.1
1+
.ds VN 4.93.2

0 commit comments

Comments
 (0)