Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #80 from lf-lang/releases/v0.8.1
Browse files Browse the repository at this point in the history
Release version 0.8.1
  • Loading branch information
francabot authored Jul 14, 2024
2 parents dc0a8a8 + a7680dc commit 099a1ce
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [v0.8.1](https://github.com/lf-lang/epoch/tree/v0.8.1) (2024-07-14)

**Highlights**

This patch release includes several minor bugfixes and enhancements, improving Docker support for the C++ target and providing a more complete implementation of watchdogs.



## [v0.8.0](https://github.com/lf-lang/epoch/tree/v0.8.0) (2024-07-02)

**Highlights**
Expand Down
2 changes: 1 addition & 1 deletion org.lflang.product/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</property>
<property
name="aboutText"
value="Version: 0.8.1-SNAPSHOT.&#x0A;&#x0A;Epoch is an IDE for Lingua Franca, a polyglot coordination language for building concurrent and distributed software that delivers predictable and reproducible reactive behavior.&#x0A;&#x0A;Visit our GitHub: https://repo.lf-lang.org/.&#x0A;&#x0A;This software is licensed under the BSD 2-Clause License.&#x0A;Copyright © 2019-2022, the Lingua Franca contributors. All rights reserved.">
value="Version: 0.8.1.&#x0A;&#x0A;Epoch is an IDE for Lingua Franca, a polyglot coordination language for building concurrent and distributed software that delivers predictable and reproducible reactive behavior.&#x0A;&#x0A;Visit our GitHub: https://repo.lf-lang.org/.&#x0A;&#x0A;This software is licensed under the BSD 2-Clause License.&#x0A;Copyright © 2019-2022, the Lingua Franca contributors. All rights reserved.">
</property>
<property
name="preferenceCustomization"
Expand Down
Binary file modified org.lflang.product/splash.bmp
Binary file not shown.
2 changes: 1 addition & 1 deletion org.lflang/lingua-franca
Submodule lingua-franca updated 26 files
+41 −0 CHANGELOG.md
+3 −3 README.md
+3 −11 core/src/main/java/org/lflang/AttributeUtils.java
+1 −0 core/src/main/java/org/lflang/LinguaFranca.xtext
+43 −0 core/src/main/java/org/lflang/diagram/synthesis/LinguaFrancaSynthesis.java
+41 −48 core/src/main/java/org/lflang/diagram/synthesis/styles/LinguaFrancaShapeExtensions.java
+8 −0 core/src/main/java/org/lflang/generator/ReactionInstance.java
+19 −0 core/src/main/java/org/lflang/generator/ReactorInstance.java
+25 −4 core/src/main/java/org/lflang/generator/WatchdogInstance.java
+29 −25 core/src/main/java/org/lflang/generator/c/CWatchdogGenerator.java
+17 −4 core/src/main/java/org/lflang/generator/python/PythonReactorGenerator.java
+6 −0 core/src/main/java/org/lflang/scoping/LFScopeProviderImpl.java
+1 −1 core/src/main/java/org/lflang/target/property/type/PlatformType.java
+1 −0 core/src/main/kotlin/org/lflang/generator/cpp/CppGenerator.kt
+18 −2 core/src/main/kotlin/org/lflang/generator/cpp/CppRos2Generator.kt
+50 −16 core/src/main/kotlin/org/lflang/generator/cpp/CppStandaloneGenerator.kt
+1 −1 core/src/main/resources/lib/c/reactor-c
+1 −1 core/src/main/resources/lib/cpp/reactor-cpp
+1 −1 core/src/main/resources/lib/rs/reactor-rs
+1 −1 core/src/main/resources/lib/rs/runtime-version.properties
+1 −1 core/src/main/resources/org/lflang/StringsBundle.properties
+1 −1 gradle.properties
+1 −1 test/C/src/concurrent/Watchdog.lf
+74 −0 test/C/src/concurrent/WatchdogAction.lf
+14 −0 test/Python/src/BankIndex.lf
+22 −0 test/Python/src/PythonPaths.lf

0 comments on commit 099a1ce

Please sign in to comment.