Prep for release 4.0.0

Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Cole Robinson 2022-03-02 12:44:04 -05:00
parent 05136e3843
commit e924dfb389
4 changed files with 22 additions and 2 deletions

19
NEWS.md
View File

@ -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)

View File

@ -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"/>

View File

@ -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}

View File

@ -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):