diff options
author | Cole Robinson <crobinso@redhat.com> | 2020-09-30 18:06:22 -0400 |
---|---|---|
committer | Cole Robinson <crobinso@redhat.com> | 2020-09-30 18:06:22 -0400 |
commit | b17914591aeefedd50a0a0634f479222a7ff591c (patch) | |
tree | 5292fa296ec2597d0b5cb9c866ff00a649ef1c61 | |
parent | 0643adfc4997560e81392f8fae94c5fe6410d6e4 (diff) | |
download | virt-manager-b17914591aeefedd50a0a0634f479222a7ff591c.tar.gz |
Prep for release 3.1.0v3.1.0
-rw-r--r-- | NEWS.md | 9 | ||||
-rw-r--r-- | data/virt-manager.appdata.xml.in | 1 | ||||
-rw-r--r-- | virt-manager.spec | 2 | ||||
-rw-r--r-- | virtinst/buildconfig.py | 2 |
4 files changed, 12 insertions, 2 deletions
@@ -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 diff --git a/data/virt-manager.appdata.xml.in b/data/virt-manager.appdata.xml.in index d19006d7..46de2abb 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="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"/> diff --git a/virt-manager.spec b/virt-manager.spec index bca8e96d..959ed08c 100644 --- a/virt-manager.spec +++ b/virt-manager.spec @@ -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} diff --git a/virtinst/buildconfig.py b/virtinst/buildconfig.py index 3deeb752..d4f9e15f 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.0.0" +__version__ = "3.1.0" class _BuildConfig(object): |