Release v2.2.32

pull/2066/head v2.2.32
grossmj 2 years ago
parent 1837850894
commit 99813b3cfa

@ -1,5 +1,17 @@
# Change Log
## 2.2.32 27/04/2022
* Docker: load custom interface files from /etc/network/interfaces (commented by default). Ref #2052
* Release web UI 2.2.32
* Create `/etc/network/interfaces.d` in Docker container. Fixes #2052
* Prettify Docker '/etc/network/interfaces' file. Ref #2040
* Use public DSNs for Sentry
* Fix VMware Fusion VM does not start on macOS >= 11. Fixes #2027
* Include conf file in MANIFEST.in Ref #2044
* Use Python 3.7 to publish API documentation
* Development on 2.2.32dev1
## 2.2.31 26/02/2022
* Install setuptools v59.6.0 when using Python 3.6

@ -58,7 +58,7 @@ class CrashReport:
Report crash to a third party service
"""
DSN = "https://8f474628c1e44d0799140ccf05c486b8@o19455.ingest.sentry.io/38482"
DSN = "https://57f6b1102b6a4985a8e93aed51e19b8b@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.32dev1"
__version_info__ = (2, 2, 32, 99)
__version__ = "2.2.32"
__version_info__ = (2, 2, 32, 0)
if "dev" in __version__:
try:

Loading…
Cancel
Save