summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2022-03-02 12:44:04 -0500
committerCole Robinson <crobinso@redhat.com>2022-03-02 12:44:04 -0500
commite924dfb3895f4005422849c53065a7c687894c39 (patch)
treeac2fc52ae1af042259e34ac21abaf3eba7810772
parent05136e3843a4e3b6519d20f188dacf2a072af0f3 (diff)
downloadvirt-manager-e924dfb3895f4005422849c53065a7c687894c39.tar.gz
Prep for release 4.0.0v4.0.0
Signed-off-by: Cole Robinson <crobinso@redhat.com>
-rw-r--r--NEWS.md19
-rw-r--r--data/virt-manager.appdata.xml.in1
-rw-r--r--virt-manager.spec2
-rw-r--r--virtinst/buildconfig.py2
4 files changed, 22 insertions, 2 deletions
diff --git a/NEWS.md b/NEWS.md
index 48c66f82..98816104 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,5 +1,24 @@
# Virtual Machine Manager News
+## Release 4.0.0 (March 02, 2022)
+- virt-install --os-variant/--osinfo is now a hard requirement for most
+ cases
+- Add 'Enable shared memory' UI checkbox (Lin Ma)
+- add UI preference to default to UEFI for new VMs (Charles Arnold)
+- Add virtiofs filesystem driver UI option
+- Fill in all --cputune, --cpu, --shmem, --input, and --boot suboptions
+ (Hugues Fafard)
+- virt-* mdev improvements (Shalini Chellathurai Saroja)
+- bhyve improvments (Roman Bogorodskiy)
+- Revive network portgroup UI
+- enable a TPM by default when UEFI is used (Daniel P. Berrangé)
+- Use cpu host-passthrough by default on qemu x86
+- use virtio-gpu video for most modern distros
+- Default to extra pcie root ports for q35
+- set discard=unmap by default for sparse disks and block devices
+- We now require xorissofs for --location ISO
+- We now use setuptools rather than just plain distutils
+
## Release 3.2.0 (November 14, 2020)
- Slim down filesystem device editor UI
- Fix TOCTTOU virt-install bugs (Martin Pitt)
diff --git a/data/virt-manager.appdata.xml.in b/data/virt-manager.appdata.xml.in
index b6a3e51a..c463222f 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.0.0" date="2022-03-02"/>
<release version="3.2.0" date="2020-11-14"/>
<release version="3.1.0" date="2020-09-30"/>
<release version="3.0.0" date="2020-09-15"/>
diff --git a/virt-manager.spec b/virt-manager.spec
index 99dfab52..fb7da43f 100644
--- a/virt-manager.spec
+++ b/virt-manager.spec
@@ -7,7 +7,7 @@
# End local config
Name: virt-manager
-Version: 3.2.0
+Version: 4.0.0
Release: 1%{?dist}
%global verrel %{version}-%{release}
diff --git a/virtinst/buildconfig.py b/virtinst/buildconfig.py
index 23825e9b..2aed912f 100644
--- a/virtinst/buildconfig.py
+++ b/virtinst/buildconfig.py
@@ -45,7 +45,7 @@ def _get_param(name, default): # pragma: no cover
return default
-__version__ = "3.2.0"
+__version__ = "4.0.0"
class _BuildConfig(object):