Bump upstream version to 4.10.0 for new feature
Document the fact that we are now using pure Semantic Versioning including trailing zeros. Also update debian/changelog and NEWS.markdown for previous pull request. Also remove erroneously added eol tag for Ubuntu Jammy again as it is an LTS release.
This commit is contained in:
parent
6c09007eff
commit
debd83e38c
2
Makefile
2
Makefile
@ -14,7 +14,7 @@
|
||||
#
|
||||
TMPDIR ?= /tmp
|
||||
DIST_PREFIX = ${TMPDIR}
|
||||
VERSION = 4.9.3
|
||||
VERSION = 4.10.0
|
||||
DEBVERSION = $(shell echo $(VERSION)|sed 's/\(rc\|pre\|beta\|alpha\)/~\1/')
|
||||
BASE = xen-tools
|
||||
VCS = git
|
||||
|
||||
@ -1,3 +1,27 @@
|
||||
xen-tools 4.10.0 (TODO: UNRELEASED)
|
||||
===================================
|
||||
|
||||
New Features
|
||||
------------
|
||||
|
||||
* Add support for specifying guest type. (GH #64; PR by Arno Bakker
|
||||
@arno481)
|
||||
|
||||
Distribution Releases Changes
|
||||
-----------------------------
|
||||
|
||||
* Preliminary support for
|
||||
+ Ubuntu 23.10 Mantic Minotaur
|
||||
* Declare the following releases as EoL:
|
||||
+ Ubuntu 22.10 Kinetic Kudu
|
||||
* Debian Trixie is now Testing → remove dont-test flag
|
||||
|
||||
Other Changes
|
||||
-------------
|
||||
|
||||
* Switch to pure Semantic Versioning including trailing zeros.
|
||||
|
||||
|
||||
xen-tools 4.9.2 (released 06 Feb 2023)
|
||||
======================================
|
||||
|
||||
@ -10,7 +34,7 @@ Distribution Releases Changes
|
||||
+ Ubuntu 22.10 Kinetic Kudu
|
||||
* Preliminary support for
|
||||
+ Debian 14 Forky
|
||||
+ Ubuntu 23.04 Lunar Lobste
|
||||
+ Ubuntu 23.04 Lunar Lobster
|
||||
* Declare the following releases as EoL:
|
||||
+ Ubuntu 12.04 Precise Pangolin (LTS)
|
||||
+ Ubuntu 20.10 Groovy Gorilla
|
||||
|
||||
@ -251,8 +251,8 @@ Version Numbering Scheme
|
||||
|
||||
Since release 4.4, the version numbering scheme of xen-tools tries to
|
||||
comply with the [Semantic Versioning](http://semver.org/)
|
||||
specification, with the only exception that trailing zeroes are
|
||||
omitted.
|
||||
specification, with the only exception that in releases before 4.10
|
||||
trailing zeroes were omitted.
|
||||
|
||||
Between the releases 3.9 and 4.4, the version numbering scheme
|
||||
followed roughly the same ideas, but less strict.
|
||||
|
||||
@ -874,7 +874,7 @@ my $MOUNT_POINT = undef;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.9.3';
|
||||
my $RELEASE = '4.10.0';
|
||||
|
||||
|
||||
#
|
||||
|
||||
@ -121,7 +121,7 @@ $CONFIG{ 'template' } = '/etc/xen-tools/xm-nfs.tmpl';
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.9.3';
|
||||
my $RELEASE = '4.10.0';
|
||||
|
||||
|
||||
# store version number away.
|
||||
|
||||
@ -167,7 +167,7 @@ my %CONFIG;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.9.3';
|
||||
my $RELEASE = '4.10.0';
|
||||
|
||||
|
||||
#
|
||||
|
||||
@ -106,7 +106,7 @@ $CONFIG{ 'extension' } = '.cfg';
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.9.3';
|
||||
my $RELEASE = '4.10.0';
|
||||
|
||||
|
||||
|
||||
|
||||
@ -111,7 +111,7 @@ my %CONFIG;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.9.3';
|
||||
my $RELEASE = '4.10.0';
|
||||
|
||||
|
||||
#
|
||||
|
||||
@ -113,7 +113,7 @@ my %CONFIG;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.9.3';
|
||||
my $RELEASE = '4.10.0';
|
||||
|
||||
|
||||
#
|
||||
|
||||
@ -148,7 +148,7 @@ $CONFIG{ 'extension' } = '.cfg';
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.9.3';
|
||||
my $RELEASE = '4.10.0';
|
||||
|
||||
|
||||
|
||||
|
||||
@ -100,7 +100,7 @@ my %CONFIG;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.9.3';
|
||||
my $RELEASE = '4.10.0';
|
||||
|
||||
|
||||
|
||||
|
||||
@ -80,7 +80,7 @@ use strict;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.9.3';
|
||||
my $RELEASE = '4.10.0';
|
||||
|
||||
# Init
|
||||
my $mirror = '';
|
||||
|
||||
@ -113,7 +113,7 @@ my %CONFIG;
|
||||
#
|
||||
# Release number.
|
||||
#
|
||||
my $RELEASE = '4.9.3';
|
||||
my $RELEASE = '4.10.0';
|
||||
|
||||
|
||||
#
|
||||
|
||||
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,7 +1,9 @@
|
||||
xen-tools (4.9.3-1) UNRELEASED; urgency=medium
|
||||
xen-tools (4.10.0-1) UNRELEASED; urgency=medium
|
||||
|
||||
* New upstream maintenance release
|
||||
* New upstream feature release
|
||||
+ Update list of Ubuntu and Debian releases.
|
||||
+ Support for specifying guest type. (initial patch by Arno Bakker;
|
||||
GH #64)
|
||||
* Drop alternative Suggests on btrfs-tools. (Closes: #932122; Security
|
||||
support for Xen in Debian 8 has long ended.)
|
||||
|
||||
|
||||
@ -63,7 +63,7 @@ focal = ubuntu pygrub
|
||||
groovy = ubuntu eol pygrub
|
||||
hirsute = ubuntu eol pygrub
|
||||
impish = ubuntu eol pygrub
|
||||
jammy = ubuntu eol pygrub
|
||||
jammy = ubuntu pygrub
|
||||
kinetic = ubuntu eol pygrub
|
||||
lunar = ubuntu pygrub
|
||||
mantic = ubuntu pygrub dont-test
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user