From 97bc415624fc4f5575ce4756012e31ff31e35bed Mon Sep 17 00:00:00 2001 From: ImLucasBrown <54835354+ImLucasBrown@users.noreply.github.com> Date: Wed, 25 Nov 2020 22:34:00 -0500 Subject: [PATCH 1/4] * Updated release graph loop for creating github releases. --- build/release.nxt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/build/release.nxt b/build/release.nxt index b879517..85bef7d 100644 --- a/build/release.nxt +++ b/build/release.nxt @@ -144,7 +144,13 @@ } }, "/ReleaseLoop": { - "execute_in": "/make_module_folder" + "execute_in": "/make_module_folder", + "attrs": { + "release_types": { + "type": "tuple", + "value": "(${/versions.EDITOR})" + } + } }, "/ValidatePushed/GetRemoteHEAD": { "attrs": { From 409f1cbcf9897e951cd92d3f6003868078a402ef Mon Sep 17 00:00:00 2001 From: ImLucasBrown <54835354+ImLucasBrown@users.noreply.github.com> Date: Wed, 25 Nov 2020 22:34:18 -0500 Subject: [PATCH 2/4] version up for release --- nxt_editor/version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nxt_editor/version.json b/nxt_editor/version.json index 5af8f69..6776a45 100644 --- a/nxt_editor/version.json +++ b/nxt_editor/version.json @@ -2,6 +2,6 @@ "EDITOR": { "MAJOR": 3, "MINOR": 3, - "PATCH": 6 + "PATCH": 7 } } From d33484b4f1228214ae791fadc0bf78d68087c343 Mon Sep 17 00:00:00 2001 From: ImLucasBrown <54835354+ImLucasBrown@users.noreply.github.com> Date: Wed, 25 Nov 2020 22:48:52 -0500 Subject: [PATCH 3/4] The single item tuple strikes again --- build/release.nxt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/release.nxt b/build/release.nxt index 85bef7d..3b08851 100644 --- a/build/release.nxt +++ b/build/release.nxt @@ -148,7 +148,7 @@ "attrs": { "release_types": { "type": "tuple", - "value": "(${/versions.EDITOR})" + "value": "(${/versions.EDITOR},)" } } }, From e019a221a2a54c72ed52417dd14d62af4847b068 Mon Sep 17 00:00:00 2001 From: ImLucasBrown <54835354+ImLucasBrown@users.noreply.github.com> Date: Wed, 25 Nov 2020 22:51:16 -0500 Subject: [PATCH 4/4] Fixed missing import --- build/release.nxt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/release.nxt b/build/release.nxt index 3b08851..6ff0c2f 100644 --- a/build/release.nxt +++ b/build/release.nxt @@ -113,7 +113,7 @@ "import shutil", "# Internal", "import nxt", - "from nxt.constants import API_VERSION", + "from nxt.constants import API_VERSION, GRAPH_VERSION", "from nxt_editor.constants import EDITOR_VERSION" ] },