Removed @PACKAGE_VERSION@ placeholder from ddclient for now.
This reverts the changes from 36744e5. This will be reimplemented once
the build process is better documented and properly implemented
by any downstream not yet using it (as of now linuxserver.io).
See https://github.com/linuxserver/docker-ddclient/issues/77
This commit is contained in:
parent
ea8216fae4
commit
456fe79c2d
2 changed files with 4 additions and 1 deletions
|
|
@ -7,6 +7,9 @@ repository history](https://github.com/ddclient/ddclient/commits/master).
|
|||
|
||||
### Bug fixes
|
||||
* Fixed simultaneous IPv4 and IPv6 updates for provider porkbun
|
||||
* Removed @PACKAGE_VERSION@ placeholder in ddclient.in for now
|
||||
to allow downstream to adopt the proper build process first.
|
||||
See [here](https://github.com/ddclient/ddclient/issues/579) for the discussion.
|
||||
|
||||
## 2023-10-21 v3.11.0
|
||||
This version is the same as v3.11.0_1 (except for the updated version number in the code).
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ use File::Temp;
|
|||
use Getopt::Long;
|
||||
use Sys::Hostname;
|
||||
|
||||
use version 0.77; our $VERSION = version->declare('@PACKAGE_VERSION@');
|
||||
use version 0.77; our $VERSION = version->declare('3.11.1_0');
|
||||
my $version = $VERSION->stringify();
|
||||
my $programd = $0;
|
||||
$programd =~ s%^.*/%%;
|
||||
|
|
|
|||
Loading…
Reference in a new issue