Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.23.2 to build ubuntu 24.4 deb #667

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Tue, 18 Jun 2024 08:40:33 +0200
-- Tobi Oetiker <[email protected]> Thu, 27 Jun 2024 12:10:28 +0200

znapzend (0.23.0) unstable; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand All @@ -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
```

Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.23.1
0.23.2
2 changes: 1 addition & 1 deletion bin/znapzendzetup
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion bin/znapzendztatz
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion man/znapzend.1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion man/znapzendzetup.1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion man/znapzendztatz.1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions release-prep.sh → release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading