diff --git a/CHANGELOG b/CHANGELOG index a99c65e..089ff01 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,15 @@ # Change Log +## 1.0.0b4 24/01/2023 + +* Upgrade to PyQt5 version 5.15.7 +* Change WebClient window title and upgrade dependencies. Ref #23 +* Update packages for Fedora installation. Fixes #17 +* Add Python 3.9, 3.10 and 3.11 support +* Add kitty as an option for Console Applications. Fixes https://github.com/GNS3/gns3-gui/issues/3203 +* Add Windows Terminal as an option for Console Applications. Fixes #20 +* Add ZOC8 console terminal for macOS command line + ## 1.0.0b3 29/05/2020 * Change default config & log location. diff --git a/gns3_webclient_pack/version.py b/gns3_webclient_pack/version.py index 14e760c..aa263df 100644 --- a/gns3_webclient_pack/version.py +++ b/gns3_webclient_pack/version.py @@ -23,7 +23,7 @@ # or negative for a release candidate or beta (after the base version # number has been incremented) -__version__ = "1.0.0dev4" +__version__ = "1.0.0b4" __version_info__ = (1, 0, 0, -99) # Add the commit ID if this is a development version @@ -33,6 +33,6 @@ import subprocess if os.path.exists(os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", ".git")): r = subprocess.check_output(["git", "rev-parse", "--short", "HEAD"]).decode().strip("\n") - __version__ += "-" + r + __version__ += "+" + r except Exception as e: print(e)