Skip to content

Commit

Permalink
Release 2.1.0 beta 1
Browse files Browse the repository at this point in the history
  • Loading branch information
ziajka committed Aug 4, 2017
1 parent c48048f commit b82b031
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## 2.1.0b1 04/08/2017

* Info added to the Nat node
* Add missing popup information in cloud and docker node
* Handle invalid json in websockets
* Avoid invalid bad request error when receiving partial answer
* Catch parse error for broken SVG
* Filter QXcbConnection log messages
* Catch class 'PyQt5.QtNetwork.QNetworkReply'> returned a result with an error set
* Fix KeyError: 'overlay_notifications'

## 2.1.0a2 31/07/2017

* Fix permission error when importing a project on a remote server
Expand Down
2 changes: 1 addition & 1 deletion gns3/crash_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class CrashReport:
Report crash to a third party service
"""

DSN = "sync+https://524bf289665d45ac91f2f621e8d9982f:35233ad66db0472b903e19305987c34f@sentry.io/38506"
DSN = "sync+https://11f1de2cf38745ed8075e492c8a274e9:1035b6adddef40c88acd71346241072e@sentry.io/38506"
if hasattr(sys, "frozen"):
cacert = get_resource("cacert.pem")
if cacert is not None and os.path.isfile(cacert):
Expand Down
6 changes: 4 additions & 2 deletions gns3/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.


__version__ = "2.1.0dev3"
__version_info__ = (2, 1, 0, -99)# If it's a git checkout try to add the commit
__version__ = "2.1.0b1"
__version_info__ = (2, 1, 0, -99)

# If it's a git checkout try to add the commit
if "dev" in __version__:
try:
import os
Expand Down

0 comments on commit b82b031

Please sign in to comment.