Prep for release 3.1.0

This commit is contained in:
Cole Robinson 2020-09-30 18:06:22 -04:00
parent 0643adfc49
commit b17914591a
4 changed files with 12 additions and 2 deletions

View File

@ -1,5 +1,14 @@
# Virtual Machine Manager News
## Release 3.1.0 (September 30, 2020)
- Return to using qcow2 sparse by default with libvirt 5.0.0+
- Make VM window shortcuts less likely to conflict with guest usage
- Fix 3.0.0 regression with spice audio
- createvol: Add explicit option for qcow2 non-sparse
- Unconditionally add USB redirdev to new VMs when using SPICE
- Unconditionally add sound devices to new VMs
- Translation string improvements (Pino Toscano)
## Release 3.0.0 (September 15, 2020)
- virt-install --cloud-init support (Athina Plaskasoviti, Cole Robinson)
- The virt-convert tool has been removed. Please use virt-v2v instead

View File

@ -41,6 +41,7 @@
</keywords>
<content_rating type="oars-1.1"/>
<releases>
<release version="3.1.0" date="2020-09-30"/>
<release version="3.0.0" date="2020-09-15"/>
<release version="2.2.1" date="2019-07-03"/>
<release version="2.2.0" date="2019-06-17"/>

View File

@ -7,7 +7,7 @@
# End local config
Name: virt-manager
Version: 3.0.0
Version: 3.1.0
Release: 1%{?dist}
%global verrel %{version}-%{release}

View File

@ -45,7 +45,7 @@ def _get_param(name, default): # pragma: no cover
return default
__version__ = "3.0.0"
__version__ = "3.1.0"
class _BuildConfig(object):