Prepare 1.3.2rc2

This commit is contained in:
Julien Duponchelle
2015-04-06 21:36:35 +02:00
parent 2f0e91d96e
commit 56e55d9cd6
4 changed files with 8 additions and 2 deletions

View File

@@ -1,6 +1,11 @@
# Change Log
## 1.3.1rc3 06/04/2015
* Fix race condition during old project import
## 1.3.1rc1 05/04/2015
* Fix rare occasion when user manage to put text in port field
* Fix a crash when exporting vpcs startup script
* Fix an issue with sending iourc when a topologies is reloaded

View File

@@ -280,7 +280,7 @@ class Project(QtCore.QObject):
path = "/projects/{project_id}{path}".format(project_id=self._id, path=path)
server.createHTTPQuery(method, path, callback, body=body, context=context)
#Call all operations waiting for project creation:
# Call all operations waiting for project creation:
if server in self._callback_finish_creating_on_server:
callbacks = self._callback_finish_creating_on_server[server]
del self._callback_finish_creating_on_server[server]

View File

@@ -25,5 +25,5 @@ or negative for a release candidate or beta (after the base version
number has been incremented)
"""
__version__ = "1.3.1.rc1"
__version__ = "1.3.1.rc2"
__version_info__ = (1, 3, 0, 99)

View File

@@ -403,6 +403,7 @@ def test_load_1_2_topology(project, monkeypatch, main_window, tmpdir):
project_call = 0
# We return an uuid for each HTTP post
def http_loader(self, method, path, callback, body={}, **kwargs):
if path == "/projects":
callback({"project_id": uuid.uuid4(), "path": str(tmpdir)}, error=False, server=local_server)