1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-14 12:29:02 +00:00
This commit is contained in:
Julien Duponchelle 2015-12-11 09:01:00 +01:00
parent 55034dd24f
commit a827f6b2de
2 changed files with 14 additions and 3 deletions

View File

@ -1,6 +1,17 @@
# Change Log
# 1.3.11 07/10/2015
## 1.3.12 11/12/2015
* Contributing instructions
* Correctly display log messages.
* Tentative fix for "WinError 64 The specified network name is no longer available" issues.
* Fix minor errors reported by codacy.com
* Add doc on how to got code coverage
* Raise an error when you use a port outside the ranges
* Fix asyncio error when closing the app
* Release UDP ports when closing a Qemu VM. Fixes #323.
## 1.3.11 07/10/2015
* Escape other usage of glob
* Fix Dynamips identifier is already used by another router

View File

@ -23,5 +23,5 @@
# or negative for a release candidate or beta (after the base version
# number has been incremented)
__version__ = "1.3.12dev1"
__version_info__ = (1, 3, 12, -99)
__version__ = "1.3.12"
__version_info__ = (1, 3, 12, 0)