Skip to content

Commit

Permalink
Preparing release 6.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rensink committed Jul 20, 2024
1 parent db8e418 commit eb3a38a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
7 changes: 7 additions & 0 deletions release/include/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ GROOVE Change Log

This document describes the major changes in the GROOVE tool set

Release 6.9.0, 20 July 2024
-------------------------------
- Added .dot export as well as .gcp export for LTSs
- "halt" added to control language (hence minor version update)
- Refactored the Im-/Exporter library
- Bug fixes: GH issues #78, #783 #788-#791

Release 6.8.4, 10 July 2024
-------------------------------
- Errors in property keys now reported by highlighting and switching
Expand Down
7 changes: 6 additions & 1 deletion src/main/java/nl/utwente/groove/util/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ private static String read(String filename) {
* @return the latest grammar version.
*/
public static String getCurrentGrammarVersion() {
return GRAMMAR_VERSION_3_10;
return GRAMMAR_VERSION_3_11;
}

/**
Expand Down Expand Up @@ -315,4 +315,9 @@ public static int compareGrammarVersions(String version1, String version2) {
* {@code false}.
*/
public static final String GRAMMAR_VERSION_3_10 = "3.10";
/**
* This is the grammar version introduced with Groove version 6.9.0.
* The {@code halt} keyword was added to the control language.
*/
public static final String GRAMMAR_VERSION_3_11 = "3.11";
}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20240710
20240720
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.8.4
6.9.0

0 comments on commit eb3a38a

Please sign in to comment.