summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2022-08-04 15:53:33 -0400
committerCole Robinson <crobinso@redhat.com>2022-08-04 15:53:33 -0400
commit8ca7c91697110ae0c1e730fc03237a06d28c5ced (patch)
treeca0ac12af54aed1c6fea76774c83b48dc2847002
parent661408bcc71ea5d13e70cda898f96f020429612e (diff)
downloadvirt-manager-8ca7c91697110ae0c1e730fc03237a06d28c5ced.tar.gz
Prep for release 4.1.0v4.1.0
Signed-off-by: Cole Robinson <crobinso@redhat.com>
-rw-r--r--NEWS.md8
-rw-r--r--data/virt-manager.appdata.xml.in1
-rw-r--r--virt-manager.spec2
-rw-r--r--virtinst/buildconfig.py2
4 files changed, 11 insertions, 2 deletions
diff --git a/NEWS.md b/NEWS.md
index 98816104..94ad731f 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -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
diff --git a/data/virt-manager.appdata.xml.in b/data/virt-manager.appdata.xml.in
index c463222f..0383852e 100644
--- a/data/virt-manager.appdata.xml.in
+++ b/data/virt-manager.appdata.xml.in
@@ -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"/>
diff --git a/virt-manager.spec b/virt-manager.spec
index fb7da43f..55c24405 100644
--- a/virt-manager.spec
+++ b/virt-manager.spec
@@ -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}
diff --git a/virtinst/buildconfig.py b/virtinst/buildconfig.py
index 2aed912f..d612901a 100644
--- a/virtinst/buildconfig.py
+++ b/virtinst/buildconfig.py
@@ -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):