Bump version to v4.0.0~alpha
The list of breaking changes has become significant enough to warrant bumping the major version number.
This commit is contained in:
parent
f0de73e8c4
commit
c6581b03f2
3 changed files with 4 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
||||||
This document describes notable changes. For details, see the [source code
|
This document describes notable changes. For details, see the [source code
|
||||||
repository history](https://github.com/ddclient/ddclient/commits/master).
|
repository history](https://github.com/ddclient/ddclient/commits/master).
|
||||||
|
|
||||||
## v3.12.0~alpha (unreleased work-in-progress)
|
## v4.0.0~alpha (unreleased work-in-progress)
|
||||||
|
|
||||||
### Breaking changes
|
### Breaking changes
|
||||||
|
|
||||||
|
|
|
@ -136,11 +136,11 @@ If a fix is committed but not yet part of any tagged release, the notes here wil
|
||||||
The `ssl` parameter forces all connections to use HTTPS. While technically
|
The `ssl` parameter forces all connections to use HTTPS. While technically
|
||||||
working as expected, this behavior keeps coming up as a pain point when using
|
working as expected, this behavior keeps coming up as a pain point when using
|
||||||
HTTP-only IP querying sites such as http://checkip.dyndns.org. Starting with
|
HTTP-only IP querying sites such as http://checkip.dyndns.org. Starting with
|
||||||
v3.12.0, the behavior is changed to respect `http://` in a URL. A separate
|
v4.0.0, the behavior is changed to respect `http://` in a URL. A separate
|
||||||
parameter to disallow all HTTP connections or warn about them may be added
|
parameter to disallow all HTTP connections or warn about them may be added
|
||||||
later.
|
later.
|
||||||
|
|
||||||
**Fix**: v3.12.0 uses HTTP to connect to URLs starting with `http://`. See
|
**Fix**: v4.0.0 uses HTTP to connect to URLs starting with `http://`. See
|
||||||
[here](https://github.com/ddclient/ddclient/pull/608) for more info.
|
[here](https://github.com/ddclient/ddclient/pull/608) for more info.
|
||||||
|
|
||||||
**Workaround**: Disable the SSL parameter
|
**Workaround**: Disable the SSL parameter
|
||||||
|
|
|
@ -63,7 +63,7 @@ use Sys::Hostname;
|
||||||
#
|
#
|
||||||
# For consistency and to match user expectations, the release part of the version is always three
|
# For consistency and to match user expectations, the release part of the version is always three
|
||||||
# components: MAJOR.MINOR.PATCH.
|
# components: MAJOR.MINOR.PATCH.
|
||||||
use version 0.77; our $VERSION = version->declare('v3.12.0.0_0');
|
use version 0.77; our $VERSION = version->declare('v4.0.0.0_0');
|
||||||
|
|
||||||
sub parse_version {
|
sub parse_version {
|
||||||
my ($v) = @_;
|
my ($v) = @_;
|
||||||
|
|
Loading…
Reference in a new issue