Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version v0.9.0 #178

Merged
merged 3 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -149,7 +149,6 @@
"title": "Open in Terminal",
"icon": "$(terminal)"
}

],
"configuration": {
"title": "LinguaFranca",
Expand Down Expand Up @@ -215,9 +214,8 @@
"group": "navigation@2",
"when": "view == lf-lang-projects"
}

],
"view/item/context" : [
"view/item/context": [
{
"command": "linguafranca.openInTerminal",
"group": "inline@1",
Expand Down Expand Up @@ -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",
Expand Down
Loading