Bump version to 3.10.0rc1

This commit is contained in:
Sandro Jäckel 2022-05-15 22:44:51 +02:00
parent 3a7beb27bd
commit 6be775dc10
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
4 changed files with 6 additions and 6 deletions

View file

@ -7,7 +7,7 @@ repository history](https://github.com/ddclient/ddclient/commits/master).
## 2022-05-15 v3.10.0-rc1 ## 2022-05-15 v3.10.0-rc1
This release contains a total of 350 commits according to GitHub. This release contains a total of over 360 commits according to GitHub.
Many of them cleaned up and improved the code to make further maintenance easier. Many of them cleaned up and improved the code to make further maintenance easier.
ddclient also went through a major maintainer change. More help is highly appreciated ddclient also went through a major maintainer change. More help is highly appreciated
and for the time new features are unlikely to be implemented. and for the time new features are unlikely to be implemented.

View file

@ -1,4 +1,4 @@
# DDCLIENT v3.9.1 # DDCLIENT v3.10.0rc1
`ddclient` is a Perl client used to update dynamic DNS entries for accounts `ddclient` is a Perl client used to update dynamic DNS entries for accounts
on many dynamic DNS services. on many dynamic DNS services.
@ -77,8 +77,8 @@ ddclient package.
the directory: the directory:
```shell ```shell
tar xvfa ddclient-3.9.1.tar.gz tar xvfa ddclient-3.10.0rc1.tar.gz
cd ddclient-3.9.1 cd ddclient-3.10.0rc1
``` ```
(If you are installing from a clone of the Git repository, you (If you are installing from a clone of the Git repository, you

View file

@ -1,5 +1,5 @@
AC_PREREQ([2.63]) AC_PREREQ([2.63])
AC_INIT([ddclient], [3.9.1]) AC_INIT([ddclient], [3.10.0rc1])
AC_CONFIG_SRCDIR([ddclient.in]) AC_CONFIG_SRCDIR([ddclient.in])
AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])

View file

@ -30,7 +30,7 @@ use IO::Socket::INET;
use Socket qw(AF_INET AF_INET6 PF_INET PF_INET6); use Socket qw(AF_INET AF_INET6 PF_INET PF_INET6);
use Sys::Hostname; use Sys::Hostname;
use version 0.77; our $VERSION = version->declare('v3.9.1'); use version 0.77; our $VERSION = version->declare('v3.10.0rc1');
(my $version = $VERSION->stringify()) =~ s/^v//; (my $version = $VERSION->stringify()) =~ s/^v//;
my $programd = $0; my $programd = $0;
$programd =~ s%^.*/%%; $programd =~ s%^.*/%%;