diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index a4ef659..8ade96d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -40,7 +40,7 @@ body: Open the **Extensions** side panel and click on the **godot-tools** extension to see your current version. Specify the Git commit hash if using a development or non-official build. If you use a custom build, please test if your issue is reproducible in official builds too. - placeholder: "1.2.0" + placeholder: "1.3.0" validations: required: true diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index c08f76d..162700b 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -40,7 +40,7 @@ body: Open the **Extensions** side panel and click on the **godot-tools** extension to see your current version. Specify the Git commit hash if using a development or non-official build. If you use a custom build, please test if your issue is reproducible in official builds too. - placeholder: "1.2.0" + placeholder: "1.3.0" validations: required: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 44ac94a..00ff0f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +### 1.3.0 +* [Add context menu options to copy resource path](https://github.com/godotengine/godot-vscode-plugin/pull/357) +* [Add option to run the project with visible collision shapes and navigation](https://github.com/godotengine/godot-vscode-plugin/pull/312) +* [Overhaul syntax highlighting](https://github.com/godotengine/godot-vscode-plugin/pull/342) +* [Mention that the Godot editor must be running in connection error message](https://github.com/godotengine/godot-vscode-plugin/pull/358) +* [Fix automatic indentation on line breaks not working as expected](https://github.com/godotengine/godot-vscode-plugin/pull/344) + ### 1.2.0 * [Add support for setting language-server-host](https://github.com/godotengine/godot-vscode-plugin/pull/297) * [Improve syntax highlighting](https://github.com/godotengine/godot-vscode-plugin/pull/330) diff --git a/package-lock.json b/package-lock.json index b21ae7c..5a9f12a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "godot-tools", - "version": "1.2.0", + "version": "1.3.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "godot-tools", - "version": "1.2.0", + "version": "1.3.0", "license": "MIT", "dependencies": { "await-notify": "^1.0.1", diff --git a/package.json b/package.json index aa345c6..526979f 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "godot-tools", "displayName": "godot-tools", "icon": "icon.png", - "version": "1.2.0", + "version": "1.3.0", "description": "Tools for game development with Godot Engine and GDScript", "repository": { "type": "git",