Skip to content

Commit dd4f881

Browse files
committed
Release 0.9.8 #40
1 parent a90be8d commit dd4f881

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

Diff for: Makesurefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
@define NEXT_VERSION="0.9.7.1"
2+
@define NEXT_VERSION="0.9.8"
33
@define TUSH_REPO=https://github.com/adolfopa/tush
44

55
@define GOAWK_VERSION=1.8.1

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ By default, all scripts inside goals are executed with `bash`. If you want to us
4242

4343
```
4444
$ ./makesure -h
45-
makesure ver. 0.9.7.1
45+
makesure ver. 0.9.8
4646
Usage: makesure [options...] [-f buildfile] [goals...]
4747
-f,--file buildfile
4848
set buildfile to use (default Makesurefile)

Diff for: makesure_stable

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
2-
exec awk -v "Version=0.9.7.1" -v "Prog=$0" '
2+
exec awk -v "Version=0.9.8" -v "Prog=$0" '
33
BEGIN {
44
Shell = "bash"
55
SupportedShells["bash"]

Diff for: tests/0_basic.tush

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

22
$ cd "$MYDIR"; ./$MAKESURE -v; ./$MAKESURE --version
3-
| 0.9.7.1
4-
| 0.9.7.1
3+
| 0.9.8
4+
| 0.9.8
55

66
$ cd "$MYDIR/tests/emptydir"; ../../$MAKESURE -v
7-
| 0.9.7.1
7+
| 0.9.8
88

99
$ cd "$MYDIR/tests/emptydir"; ../../$MAKESURE -h
10-
| makesure ver. 0.9.7.1
10+
| makesure ver. 0.9.8
1111
| Usage: makesure [options...] [-f buildfile] [goals...]
1212
| -f,--file buildfile
1313
| set buildfile to use (default Makesurefile)

Diff for: tests/12_update.tush

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ $ cd "$MYDIR"; ./$MAKESURE -f tests/12_update.sh test_wget
1313
| goal 'run_selfupdate' ...
1414
| XXX
1515
| running wget
16-
| updated XXX -> 0.9.7.1
16+
| updated XXX -> 0.9.8
1717
| running wget
18-
| you have latest version 0.9.7.1 installed
19-
| 0.9.7.1
18+
| you have latest version 0.9.8 installed
19+
| 0.9.8
2020
| goal 'test_wget' [empty].
2121

2222
$ cd "$MYDIR"; ./$MAKESURE -f tests/12_update.sh test_curl
@@ -25,8 +25,8 @@ $ cd "$MYDIR"; ./$MAKESURE -f tests/12_update.sh test_curl
2525
| goal 'run_selfupdate' ...
2626
| XXX
2727
| running curl
28-
| updated XXX -> 0.9.7.1
28+
| updated XXX -> 0.9.8
2929
| running curl
30-
| you have latest version 0.9.7.1 installed
31-
| 0.9.7.1
30+
| you have latest version 0.9.8 installed
31+
| 0.9.8
3232
| goal 'test_curl' [empty].

0 commit comments

Comments
 (0)