diff --git a/CHANGELOG.md b/CHANGELOG.md index bc11e2519..5e9a46a1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## [v0.9.0](https://github.com/lf-lang/vscode-lingua-franca/tree/v0.9.0) (2024-10-31) + +**Highlights** + +This release of Lingua Franca adds support for reusable and publishable packages, providing the necessary infrastructure to develop a community-driven ecosystem of Lingua Franca packages. The VS code extension now features an integrated package explorer, and the diagrams provide colored highlighting for selected diagram edges. Other new features include C support for a new hardware platform called Patmos, several minor syntax and API improvements, and a new Alpine-based default Docker image for Python. This release also includes numerous bug fixes, such as preventing hangs during timeouts, addressing issues in decentralized coordination, improving error handling, and fixing concurrency issues in the C runtime. + +**🚀 New Features** + +- Lingua Franca Package Explorer: extensions to UI in VScode plugin [\#156](https://github.com/lf-lang/vscode-lingua-franca/pull/156) (@edwardalee) + +**✨ Enhancements** + +- Indexing single Lingua Franca projects [\#181](https://github.com/lf-lang/vscode-lingua-franca/pull/181) (@vinzbarbuto) + +**🔧 Fixes** + +- Resolve goToLingoToml for Windows [\#183](https://github.com/lf-lang/vscode-lingua-franca/pull/183) (@vinzbarbuto) + +**📖 Documentation** + +- Updated contributing guide to include the debugging workflow. [\#177](https://github.com/lf-lang/vscode-lingua-franca/pull/177) (@soerendomroes) +- Updated README to reflect recent UI changes [\#180](https://github.com/lf-lang/vscode-lingua-franca/pull/180) (@vinzbarbuto) +- Update documentation link [\#182](https://github.com/lf-lang/vscode-lingua-franca/pull/182) (@vinzbarbuto) + +- Adjustment of version numbers for nightly releases [\#175](https://github.com/lf-lang/vscode-lingua-franca/pull/175) (@lhstrh) + + ## [v0.8.2](https://github.com/lf-lang/vscode-lingua-franca/tree/v0.8.2) (2024-08-02) **Highlights** diff --git a/lingua-franca b/lingua-franca index daaea1bf1..ab199884c 160000 --- a/lingua-franca +++ b/lingua-franca @@ -1 +1 @@ -Subproject commit daaea1bf15a2cf97ea4e980aeab8a5a3972e1dcd +Subproject commit ab199884cab8bd81bb91b8e4a4eb780cc52ed106 diff --git a/package-lock.json b/package-lock.json index 221f0d3d0..f55dfbf9a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-lingua-franca", - "version": "0.8.2", + "version": "0.9.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-lingua-franca", - "version": "0.8.2", + "version": "0.9.0", "hasInstallScript": true, "license": "BSD-2-Clause", "dependencies": { diff --git a/package.json b/package.json index 57f49aceb..90c589220 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-lingua-franca", "displayName": "Lingua Franca", "description": "Lingua Franca for Visual Studio Code. Provides lints, code completion and navigation, interactive diagrams, and more.", - "version": "0.8.2", + "version": "0.9.0", "publisher": "lf-lang", "icon": "images/icon.png", "license": "BSD-2-Clause", @@ -149,7 +149,6 @@ "title": "Open in Terminal", "icon": "$(terminal)" } - ], "configuration": { "title": "LinguaFranca", @@ -215,9 +214,8 @@ "group": "navigation@2", "when": "view == lf-lang-projects" } - ], - "view/item/context" : [ + "view/item/context": [ { "command": "linguafranca.openInTerminal", "group": "inline@1", @@ -264,14 +262,14 @@ "id": "lf-lang-projects", "name": "" } - ] + ] }, "viewsWelcome": [ { - "view": "lf-lang-projects", - "contents": "No Lingua Franca project found. [Learn more](https://www.lf-lang.org/docs/tools/code-extension) about setting up a Lingua Franca project structure.\n[Open Lingua Franca Project](command:linguafranca.openFolder)" + "view": "lf-lang-projects", + "contents": "No Lingua Franca project found. [Learn more](https://www.lf-lang.org/docs/tools/code-extension) about setting up a Lingua Franca project structure.\n[Open Lingua Franca Project](command:linguafranca.openFolder)" } - ] + ] }, "devDependencies": { "@types/chai": "^4.3.1",