Skip to content

Commit 6abf2d8

Browse files
committed
Fix version number in makeself.1 and makeself.sh
1 parent 55d96ab commit 6abf2d8

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ I will gladly consider merging your pull requests on the [GitHub][10] repository
189189

190190
## Download
191191

192-
Get the latest official distribution [here][9] (version 2.5.0).
192+
Get the latest official distribution [here][9] (version 2.6.0).
193193

194194
The latest development version can be grabbed from [GitHub][10]. Feel free to submit any patches there through the fork and pull request process.
195195

@@ -219,6 +219,9 @@ The latest development version can be grabbed from [GitHub][10]. Feel free to su
219219
* **v2.4.4:** Fixed various compatibility issues (no longer use POSIX tar archives), Github Actions to check on Solaris and FreeBSD.
220220
* **v2.4.5:** Added `--tar-format` option to set the tar archive format (default is ustar)
221221
* **v2.5.0:** Expended support to NetBSD, OpenBSD, Busybox and other minimal distributions such as Alpine Linux. Added bzip3 compression support and expanded GPG arguments.
222+
* **v2.6.0:** Added --preextract hook with --show-preextract, enabling scripted checks before extraction and full shUnit2 coverage.
223+
Introduced --comp-extra so archives can pass extra flags (e.g., --no-name) to any compressor, plus positive/negative tests.
224+
Documented SETUP_NOCHECK=1 to skip integrity verification; new regression test ensures behavior.
222225

223226
## Links
224227

@@ -247,7 +250,7 @@ This project is now hosted on GitHub. Feel free to submit patches and bug report
247250
[6]: http://earth.google.com/
248251
[7]: http://www.virtualbox.org/
249252
[8]: http://www.gnu.org/copyleft/gpl.html
250-
[9]: https://github.com/megastep/makeself/releases/download/release-2.5.0/makeself-2.5.0.run
253+
[9]: https://github.com/megastep/makeself/releases/download/release-2.6.0/makeself-2.6.0.run
251254
[10]: https://github.com/megastep/makeself
252255
[11]: https://github.com/megastep/loki_setup/
253256
[12]: http://www.unrealtournament2003.com/

makeself.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "MAKESELF" "1" "2.5.0"
1+
.TH "MAKESELF" "1" "2.6.0"
22
.SH "NAME"
33
makeself \- An utility to generate self-extractable archives.
44
.SH "SYNTAX"

makeself.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
#
3-
# Makeself version 2.5.x
3+
# Makeself version 2.6.x
44
# by Stephane Peter <[email protected]>
55
#
66
# Utility to create self-extracting tar.gz archives.
@@ -17,7 +17,7 @@
1717
# Self-extracting archives created with this script are explictly NOT released under the term of the GPL
1818
#
1919

20-
MS_VERSION=2.5.0
20+
MS_VERSION=2.6.0
2121
MS_COMMAND="$0"
2222
unset CDPATH
2323

0 commit comments

Comments
 (0)