Release v2.2.23

pull/1938/head v2.2.23
grossmj 3 years ago
parent 77487e4fc3
commit d5c73f4ba4

@ -1,5 +1,18 @@
# Change Log
## 2.2.23 05/08/2021
* Release web UI 2.2.23
* Fix hostname inconsistencies during script execution
* Add option `--without-kvm`
* Add a `reload` server endpoint. Fixes #1926
* Handle -no-kvm param deprecated in Qemu >= v5.2
* Fix binary websocket access to the console
* Change how to generate random MAC addresses
* setup.py: prevent installing tests directory
* Support cloning of encrypted qcow2 base image files
* Fix VMware VM support on Linux and Windows. Fixes #1919
## 2.2.22 10/06/2021
* Fix VMware support on macOS BigSur

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://022a311c303844b787956ede74383ad6:3013e7e214ad4473aa2cb3ade9eb2d40@o19455.ingest.sentry.io/38482"
DSN = "https://aefc1e0e41e94957936f8773071aebf9:056b5247d4854b81ac9162d9ccc5a503@o19455.ingest.sentry.io/38482"
_instance = None
def __init__(self):

@ -23,8 +23,8 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "2.2.23dev1"
__version_info__ = (2, 2, 23, 99)
__version__ = "2.2.23"
__version_info__ = (2, 2, 23, 0)
if "dev" in __version__:
try:

Loading…
Cancel
Save