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

V0.23.0 #661

Merged
merged 2 commits into from
Jun 18, 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
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
znapzend (0.23.0) unstable; urgency=medium

* Fixed `autoCreation` behavior broken in 0.22.0 release -- @jimklimov
* Updated recipes for `make check` to install Perl modules it needs
(previously was only done as part of GitHub checks); renamed the
Expand All @@ -10,6 +12,8 @@
module installations) -- @jimklimov
* Applied same markup style to older CHANGES logged entries -- @jimklimov

-- Tobi Oetiker <[email protected]> Fri, 14 Jun 2024 14:42:00 +0200

znapzend (0.22.0) unstable; urgency=medium

* Add debian 12 package -- @moetiker
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-05-03
2024-06-14

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.22.1
ZNAPVER=0.23.0
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.22.1
ZNAPVER=0.23.0
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-05-03
2024-06-14
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.22.0
0.23.0
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.22.0}; # VERSION
my $VERSION = q{0.23.0}; # 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.22.0}; # VERSION
my $VERSION = q{0.23.0}; # 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.22.1" "znapzend"
.TH ZNAPZEND 1 "2024-05-03" "0.23.0" "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-05-03" "0.22.0" "znapzend"
.TH ZNAPZENDZETUP 1 "2024-06-14" "0.23.0" "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-05-03" "0.22.0" "znapzend"
.TH ZNAPZENDZTATZ 1 "2024-06-14" "0.23.0" "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
12 changes: 3 additions & 9 deletions release-prep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,11 @@ P=znapzend
rm -f config.status
./bootstrap.sh
./configure
echo ${V} `date +"%Y-%m-%d %H:%M:%S %z"` `git config user.name` '<'`git config user.email`'>' > CHANGES.new
echo >> CHANGES.new
echo ' -' >> CHANGES.new
echo >> CHANGES.new
$EDITOR CHANGES.new
tail --line=+2 CHANGES.new | sed -e 's/^ //' > release-notes-$V.md
cat CHANGES >> CHANGES.new
mv CHANGES.new CHANGES
VERSION=$(cat VERSION)
debchange -m -v $V
make
make dist
git checkout -b v${V}
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'
88 changes: 88 additions & 0 deletions thirdparty/cpanfile-5.30.snapshot
Original file line number Diff line number Diff line change
@@ -1,5 +1,93 @@
# carton snapshot format: version 1.0
DISTRIBUTIONS
Class-Method-Modifiers-2.15
pathname: E/ET/ETHER/Class-Method-Modifiers-2.15.tar.gz
provides:
Class::Method::Modifiers 2.15
requirements:
B 0
Carp 0
Exporter 0
ExtUtils::MakeMaker 0
base 0
perl 5.006
strict 0
warnings 0
ExtUtils-Config-0.008
pathname: L/LE/LEONT/ExtUtils-Config-0.008.tar.gz
provides:
ExtUtils::Config 0.008
requirements:
Data::Dumper 0
ExtUtils::MakeMaker 6.30
strict 0
warnings 0
ExtUtils-Helpers-0.026
pathname: L/LE/LEONT/ExtUtils-Helpers-0.026.tar.gz
provides:
ExtUtils::Helpers 0.026
ExtUtils::Helpers::Unix 0.026
ExtUtils::Helpers::VMS 0.026
ExtUtils::Helpers::Windows 0.026
requirements:
Carp 0
Exporter 5.57
ExtUtils::MakeMaker 0
File::Basename 0
File::Copy 0
File::Spec::Functions 0
Text::ParseWords 3.24
perl 5.006
strict 0
warnings 0
ExtUtils-InstallPaths-0.012
pathname: L/LE/LEONT/ExtUtils-InstallPaths-0.012.tar.gz
provides:
ExtUtils::InstallPaths 0.012
requirements:
Carp 0
ExtUtils::Config 0.002
ExtUtils::MakeMaker 0
File::Spec 0
perl 5.006
strict 0
warnings 0
Module-Build-Tiny-0.039
pathname: L/LE/LEONT/Module-Build-Tiny-0.039.tar.gz
provides:
Module::Build::Tiny 0.039
requirements:
CPAN::Meta 0
DynaLoader 0
Exporter 5.57
ExtUtils::CBuilder 0
ExtUtils::Config 0.003
ExtUtils::Helpers 0.020
ExtUtils::Install 0
ExtUtils::InstallPaths 0.002
ExtUtils::ParseXS 0
File::Basename 0
File::Find 0
File::Path 0
File::Spec::Functions 0
Getopt::Long 2.36
JSON::PP 2
Pod::Man 0
TAP::Harness::Env 0
perl 5.006
strict 0
warnings 0
Mojo-Log-Clearable-1.001
pathname: D/DB/DBOOK/Mojo-Log-Clearable-1.001.tar.gz
provides:
Mojo::Log::Clearable 1.001
Mojo::Log::Role::Clearable 1.001
requirements:
Class::Method::Modifiers 2.11
Module::Build::Tiny 0.034
Mojolicious 7.42
Role::Tiny 2.000002
perl 5.010001
Mojolicious-9.30
pathname: S/SR/SRI/Mojolicious-9.30.tar.gz
provides:
Expand Down
Loading