Prep for release 4.1.0

Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Cole Robinson 2022-08-04 15:53:33 -04:00
parent 661408bcc7
commit 8ca7c91697
4 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,13 @@
# Virtual Machine Manager News
## Release 4.1.0 (August 04, 2022)
- Fix build with setuptools-61 (Peter Alfredsen, Miro Hrončok)
- add UI and cli support for qemu-vdagent channel (Jonathon Jongsma)
- cli: More --iothreads suboptions (Lin Ma)
- launch_security: Use SEV-ES policy=0x07 if host supports it (Charles
Arnold)
- cli: Add support for URL query with disks (Martin Kletzander)
## Release 4.0.0 (March 02, 2022)
- virt-install --os-variant/--osinfo is now a hard requirement for most
cases

View File

@ -41,6 +41,7 @@
</keywords>
<content_rating type="oars-1.1"/>
<releases>
<release version="4.1.0" date="2022-08-04"/>
<release version="4.0.0" date="2022-03-02"/>
<release version="3.2.0" date="2020-11-14"/>
<release version="3.1.0" date="2020-09-30"/>

View File

@ -7,7 +7,7 @@
# End local config
Name: virt-manager
Version: 4.0.0
Version: 4.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__ = "4.0.0"
__version__ = "4.1.0"
class _BuildConfig(object):