diff --git a/CHANGES b/CHANGES index aee734bc..f98c6064 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,9 @@ -znapzend (0.23.1) UNRELEASED; urgency=medium +znapzend (0.23.2) UNRELEASED; urgency=medium * added missing cpanfile.test #662 + * build deb for ubuntu 24.4 - -- Tobi Oetiker Tue, 18 Jun 2024 08:40:33 +0200 + -- Tobi Oetiker Thu, 27 Jun 2024 12:10:28 +0200 znapzend (0.23.0) unstable; urgency=medium diff --git a/COPYRIGHT b/COPYRIGHT index 39e4e298..549a8a23 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -3,7 +3,7 @@ znapzend - A ZFS backup system Copyright by Dominik Hassler, Tobias Oetiker and the other people listed in the AUTHORS file. -2024-06-18 +2024-06-27 All rights reserved. diff --git a/README.md b/README.md index 5efbfca4..bd51e01b 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ xcode-select --install ### ...or just install the full Xcode app from the Apple With that in place you can now utter: ```sh -ZNAPVER=0.23.1 +ZNAPVER=0.23.2 wget https://github.com/oetiker/znapzend/releases/download/v${ZNAPVER}/znapzend-${ZNAPVER}.tar.gz tar zxvf znapzend-${ZNAPVER}.tar.gz cd znapzend-${ZNAPVER} @@ -159,7 +159,7 @@ Optionally (but recommended) put symbolic links to the installed binaries in the system PATH, e.g.: ```sh -ZNAPVER=0.23.1 +ZNAPVER=0.23.2 for x in /opt/znapzend-${ZNAPVER}/bin/*; do ln -fs ../../../$x /usr/local/bin/; done ``` @@ -612,4 +612,4 @@ And if you have a code or documentation contribution, please Enjoy! Dominik Hassler & Tobi Oetiker -2024-06-18 +2024-06-27 diff --git a/VERSION b/VERSION index 610e2872..fda96dcf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.23.1 +0.23.2 diff --git a/bin/znapzendzetup b/bin/znapzendzetup index 9fe8f912..43086de9 100755 --- a/bin/znapzendzetup +++ b/bin/znapzendzetup @@ -10,7 +10,7 @@ use Scalar::Util qw(blessed); use Mojo::Base -strict; use Mojo::Log; use ZnapZend::Config; -my $VERSION = q{0.23.1}; # VERSION +my $VERSION = q{0.23.2}; # VERSION my @ROOT_EXEC_OPTIONS = qw(pfexec sudo rootExec=s debug features=s); my %featureMap = map { $_ => 1 } qw(pfexec sudo lowmemRecurse zfsGetType); diff --git a/bin/znapzendztatz b/bin/znapzendztatz index 03c5719d..1a7abbc3 100755 --- a/bin/znapzendztatz +++ b/bin/znapzendztatz @@ -10,7 +10,7 @@ use Mojo::Base -strict; use Mojo::Log; use ZnapZend::Config; use ZnapZend::ZFS; -my $VERSION = q{0.23.1}; # VERSION +my $VERSION = q{0.23.2}; # VERSION my $zConfig; my $zZfs; my $zTime = ZnapZend::Time->new(); diff --git a/man/znapzend.1 b/man/znapzend.1 index 935de5bd..367fa82a 100644 --- a/man/znapzend.1 +++ b/man/znapzend.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ZNAPZEND 1" -.TH ZNAPZEND 1 "2024-05-03" "0.23.1" "znapzend" +.TH ZNAPZEND 1 "2024-05-03" "0.23.2" "znapzend" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/man/znapzendzetup.1 b/man/znapzendzetup.1 index 89c37226..f7775639 100644 --- a/man/znapzendzetup.1 +++ b/man/znapzendzetup.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ZNAPZENDZETUP 1" -.TH ZNAPZENDZETUP 1 "2024-06-18" "0.23.1" "znapzend" +.TH ZNAPZENDZETUP 1 "2024-06-27" "0.23.2" "znapzend" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/man/znapzendztatz.1 b/man/znapzendztatz.1 index 4a0bbb21..e22bcdf9 100644 --- a/man/znapzendztatz.1 +++ b/man/znapzendztatz.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "ZNAPZENDZTATZ 1" -.TH ZNAPZENDZTATZ 1 "2024-06-18" "0.23.1" "znapzend" +.TH ZNAPZENDZTATZ 1 "2024-06-27" "0.23.2" "znapzend" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/release-prep.sh b/release.sh similarity index 84% rename from release-prep.sh rename to release.sh index e5a7e249..89fe9138 100755 --- a/release-prep.sh +++ b/release.sh @@ -13,3 +13,4 @@ git checkout -b v${V} || true git commit -a git push --set-upstream origin v${V} #gh release create v${V} --title "ZnapZend $V" --notes-file release-notes-$V.md ${P}-${V}.tar.gz'#Source Archive' +gh release create v${V} --title "ZnapZend $V" ${P}-${V}.tar.gz