Skip to content

Commit 0b75ad9

Browse files
authored
Merge pull request #661 from oetiker/v0.23.0
V0.23.0
2 parents 87f4cf7 + 6193116 commit 0b75ad9

File tree

11 files changed

+105
-19
lines changed

11 files changed

+105
-19
lines changed

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
znapzend (0.23.0) unstable; urgency=medium
2+
13
* Fixed `autoCreation` behavior broken in 0.22.0 release -- @jimklimov
24
* Updated recipes for `make check` to install Perl modules it needs
35
(previously was only done as part of GitHub checks); renamed the
@@ -10,6 +12,8 @@
1012
module installations) -- @jimklimov
1113
* Applied same markup style to older CHANGES logged entries -- @jimklimov
1214

15+
-- Tobi Oetiker <[email protected]> Fri, 14 Jun 2024 14:42:00 +0200
16+
1317
znapzend (0.22.0) unstable; urgency=medium
1418

1519
* Add debian 12 package -- @moetiker

COPYRIGHT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ znapzend - A ZFS backup system
33
Copyright by Dominik Hassler, Tobias Oetiker and the other people listed
44
in the AUTHORS file.
55

6-
2024-05-03
6+
2024-06-14
77

88
All rights reserved.
99

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ xcode-select --install ### ...or just install the full Xcode app from the Apple
134134
With that in place you can now utter:
135135

136136
```sh
137-
ZNAPVER=0.22.1
137+
ZNAPVER=0.23.0
138138
wget https://github.com/oetiker/znapzend/releases/download/v${ZNAPVER}/znapzend-${ZNAPVER}.tar.gz
139139
tar zxvf znapzend-${ZNAPVER}.tar.gz
140140
cd znapzend-${ZNAPVER}
@@ -159,7 +159,7 @@ Optionally (but recommended) put symbolic links to the installed binaries
159159
in the system PATH, e.g.:
160160

161161
```sh
162-
ZNAPVER=0.22.1
162+
ZNAPVER=0.23.0
163163
for x in /opt/znapzend-${ZNAPVER}/bin/*; do ln -fs ../../../$x /usr/local/bin/; done
164164
```
165165

@@ -612,4 +612,4 @@ And if you have a code or documentation contribution, please
612612
Enjoy!
613613
614614
Dominik Hassler & Tobi Oetiker
615-
2024-05-03
615+
2024-06-14

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.22.0
1+
0.23.0

bin/znapzendzetup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use Scalar::Util qw(blessed);
1010
use Mojo::Base -strict;
1111
use Mojo::Log;
1212
use ZnapZend::Config;
13-
my $VERSION = q{0.22.0}; # VERSION
13+
my $VERSION = q{0.23.0}; # VERSION
1414

1515
my @ROOT_EXEC_OPTIONS = qw(pfexec sudo rootExec=s debug features=s);
1616
my %featureMap = map { $_ => 1 } qw(pfexec sudo lowmemRecurse zfsGetType);

bin/znapzendztatz

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use Mojo::Base -strict;
1010
use Mojo::Log;
1111
use ZnapZend::Config;
1212
use ZnapZend::ZFS;
13-
my $VERSION = q{0.22.0}; # VERSION
13+
my $VERSION = q{0.23.0}; # VERSION
1414
my $zConfig;
1515
my $zZfs;
1616
my $zTime = ZnapZend::Time->new();

man/znapzend.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
.\" ========================================================================
134134
.\"
135135
.IX Title "ZNAPZEND 1"
136-
.TH ZNAPZEND 1 "2024-05-03" "0.22.1" "znapzend"
136+
.TH ZNAPZEND 1 "2024-05-03" "0.23.0" "znapzend"
137137
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
138138
.\" way too many mistakes in technical documents.
139139
.if n .ad l

man/znapzendzetup.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
.\" ========================================================================
134134
.\"
135135
.IX Title "ZNAPZENDZETUP 1"
136-
.TH ZNAPZENDZETUP 1 "2024-05-03" "0.22.0" "znapzend"
136+
.TH ZNAPZENDZETUP 1 "2024-06-14" "0.23.0" "znapzend"
137137
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
138138
.\" way too many mistakes in technical documents.
139139
.if n .ad l

man/znapzendztatz.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
.\" ========================================================================
134134
.\"
135135
.IX Title "ZNAPZENDZTATZ 1"
136-
.TH ZNAPZENDZTATZ 1 "2024-05-03" "0.22.0" "znapzend"
136+
.TH ZNAPZENDZTATZ 1 "2024-06-14" "0.23.0" "znapzend"
137137
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
138138
.\" way too many mistakes in technical documents.
139139
.if n .ad l

release-prep.sh

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,11 @@ P=znapzend
55
rm -f config.status
66
./bootstrap.sh
77
./configure
8-
echo ${V} `date +"%Y-%m-%d %H:%M:%S %z"` `git config user.name` '<'`git config user.email`'>' > CHANGES.new
9-
echo >> CHANGES.new
10-
echo ' -' >> CHANGES.new
11-
echo >> CHANGES.new
12-
$EDITOR CHANGES.new
13-
tail --line=+2 CHANGES.new | sed -e 's/^ //' > release-notes-$V.md
14-
cat CHANGES >> CHANGES.new
15-
mv CHANGES.new CHANGES
8+
VERSION=$(cat VERSION)
9+
debchange -m -v $V
1610
make
1711
make dist
18-
git checkout -b v${V}
12+
git checkout -b v${V} || true
1913
git commit -a
2014
git push --set-upstream origin v${V}
2115
#gh release create v${V} --title "ZnapZend $V" --notes-file release-notes-$V.md ${P}-${V}.tar.gz'#Source Archive'

0 commit comments

Comments
 (0)