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.5.0 #135

Merged
merged 3 commits into from
Sep 2, 2023
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
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,51 @@
# Changelog

## [v0.5.0](https://github.com/lf-lang/vscode-lingua-franca/tree/v0.5.0) (2023-09-01)

**Highlights**

This release comes with an updated Lingua Franca compiler, improved syntax highlighting, and support for nightly pre-releases.

**🚀 New Features**

- Support for "New LF file" [\#112](https://github.com/lf-lang/vscode-lingua-franca/pull/112) ([@jesslin02](https://github.com/jesslin02))
- Nightly publication of pre-release [\#130](https://github.com/lf-lang/vscode-lingua-franca/pull/130) ([@lhstrh](https://github.com/lhstrh))

**✨ Enhancements**

- Compatibility with Linguist [\#111](https://github.com/lf-lang/vscode-lingua-franca/pull/111) ([@jesslin02](https://github.com/jesslin02))
- Highlighting improvements [\#8](https://github.com/lf-lang/vscode-lingua-franca/pull/8) ([@petervdonovan](https://github.com/petervdonovan))
- Faster indexing during gradle build [\#125](https://github.com/lf-lang/vscode-lingua-franca/pull/125) ([@petervdonovan](https://github.com/petervdonovan))
- Updated message for missing dependencies [\#123](https://github.com/lf-lang/vscode-lingua-franca/pull/123) ([@petervdonovan](https://github.com/petervdonovan))

**🔧 Fixes**

- Diagram bug fixed [\#116](https://github.com/lf-lang/vscode-lingua-franca/pull/116) ([@petervdonovan](https://github.com/petervdonovan))

**🚧 Maintenance and Refactoring**

- Update according to the gradle configuration [\#120](https://github.com/lf-lang/vscode-lingua-franca/pull/120) ([@petervdonovan](https://github.com/petervdonovan))
- Added .gitattributes file to let Linguist ignore known-good HTML files [\#129](https://github.com/lf-lang/vscode-lingua-franca/pull/129) ([@lhstrh](https://github.com/lhstrh))
- Ability to create pre-release package [\#132](https://github.com/lf-lang/vscode-lingua-franca/pull/132) ([@lhstrh](https://github.com/lhstrh))

**📖 Documentation**

- Updated README [\#107](https://github.com/lf-lang/vscode-lingua-franca/pull/107) ([@petervdonovan](https://github.com/petervdonovan))
- Updated debug configuration and CONTRIBUTING.md [\#121](https://github.com/lf-lang/vscode-lingua-franca/pull/121) ([@petervdonovan](https://github.com/petervdonovan))

**🧪 Tests**

- Tests for syntax highlighting [\#105](https://github.com/lf-lang/vscode-lingua-franca/pull/105) ([@petervdonovan](https://github.com/petervdonovan))
- Dependency tests ran only if relevant files change [\#117](https://github.com/lf-lang/vscode-lingua-franca/pull/117) ([@petervdonovan](https://github.com/petervdonovan))
- Updated debug configuration and CONTRIBUTING.md [\#121](https://github.com/lf-lang/vscode-lingua-franca/pull/121) ([@petervdonovan](https://github.com/petervdonovan))

**⬆️ Updated Dependencies**

- Upgrade to `@vscode/vsce` 2.19.0 [\#114](https://github.com/lf-lang/vscode-lingua-franca/pull/114) ([@lhstrh](https://github.com/lhstrh))
- VS code engine bumped to `1.63.0` [\#128](https://github.com/lf-lang/vscode-lingua-franca/pull/128) ([@lhstrh](https://github.com/lhstrh))



## [v0.4.2](https://github.com/lf-lang/vscode-lingua-franca/tree/v0.4.2) (2023-03-04)

**Highlights**
Expand Down
2 changes: 1 addition & 1 deletion lingua-franca
Submodule lingua-franca updated 39 files
+8 −37 .github/actions/prepare-build-env/action.yml
+34 −0 .github/actions/setup-francabot/action.yml
+6 −0 .github/workflows/build.yml
+240 −0 CHANGELOG.md
+47 −0 core/src/main/java/org/lflang/AttributeUtils.java
+1 −1 core/src/main/java/org/lflang/Target.java
+29 −1 core/src/main/java/org/lflang/diagram/synthesis/LinguaFrancaSynthesis.java
+3 −3 core/src/main/java/org/lflang/federated/extensions/TSExtension.java
+6 −6 core/src/main/java/org/lflang/federated/generator/FedASTUtils.java
+1 −1 core/src/main/java/org/lflang/generator/DockerGenerator.java
+1 −2 core/src/main/java/org/lflang/generator/c/CStateGenerator.java
+9 −1 core/src/main/java/org/lflang/validation/AttributeSpec.java
+4 −3 core/src/main/kotlin/org/lflang/ast/AstExtensions.kt
+1 −1 core/src/main/kotlin/org/lflang/generator/cpp/CppExtensions.kt
+18 −16 core/src/main/kotlin/org/lflang/generator/cpp/CppReactionGenerator.kt
+1 −1 core/src/main/kotlin/org/lflang/generator/cpp/CppReactorGenerator.kt
+14 −5 core/src/main/kotlin/org/lflang/generator/ts/TSConstructorGenerator.kt
+9 −8 core/src/main/kotlin/org/lflang/generator/ts/TSInstanceGenerator.kt
+5 −8 core/src/main/kotlin/org/lflang/generator/ts/TSReactorGenerator.kt
+1 −1 core/src/main/resources/lib/c/reactor-c
+1 −1 core/src/main/resources/lib/ts/package.json
+1 −1 core/src/main/resources/org/lflang/StringsBundle.properties
+1 −1 gradle.properties
+42 −0 test/C/src/modal_models/ResetStateVariableOfTypeTime.lf
+42 −0 test/C/src/modal_models/ResetStateVariableWithParameterizedValue.lf
+7 −0 test/Cpp/src/HelloBodylessWorld.lf
+5 −0 test/Cpp/src/hello_bodyless_world.cc
+3 −0 test/Cpp/src/hello_bodyless_world.cmake
+45 −0 test/TypeScript/src/federated/DistributedCountPhysicalAfterDelay.lf
+64 −0 test/TypeScript/src/federated/LoopDistributedCentralized.lf
+79 −0 test/TypeScript/src/federated/LoopDistributedDouble.lf
+53 −0 test/TypeScript/src/federated/PingPongDistributed.lf
+19 −19 test/TypeScript/src/federated/PingPongDistributedPhysical.lf
+0 −0 test/TypeScript/src/federated/SimpleFederated.lf
+1 −8 test/TypeScript/src/federated/SpuriousDependency.lf
+0 −48 test/TypeScript/src/federated/failing/DistributedCountPhysicalAfterDelay.lf
+0 −64 test/TypeScript/src/federated/failing/LoopDistributedCentralized.lf
+0 −80 test/TypeScript/src/federated/failing/LoopDistributedDouble.lf
+0 −53 test/TypeScript/src/federated/failing/PingPongDistributed.lf
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.

2 changes: 1 addition & 1 deletion 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.4.2",
"version": "0.5.0",
"publisher": "lf-lang",
"icon": "images/icon.png",
"license": "BSD-2-Clause",
Expand Down
Loading