Skip to content

Commit

Permalink
Release v1.0.0b4
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Jan 24, 2023
1 parent b00a727 commit d0ae241
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions gns3_webclient_pack/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)

0 comments on commit d0ae241

Please sign in to comment.