Skip to content

Commit 7140e47

Browse files
committed
Bump version
1 parent 3f98175 commit 7140e47

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

embedCONTROLCore/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<artifactId>embedCONTROLCore</artifactId>
1414
<name>embedCONTROLCore</name>
1515
<description>TcMenu embedCONTROL shared core</description>
16-
<version>4.4.0</version>
16+
<version>4.4.1-SNAPSHOT</version>
1717
<url>https://tcmenu.github.io/documentation/arduino-libraries/tc-menu/</url>
1818

1919
<licenses>

tcMenuGenerator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<name>menuEditorUI</name>
1313
<groupId>com.thecoderscorner.tcmenu</groupId>
1414
<description>JavaFX based menu editor UI</description>
15-
<version>4.4.0</version>
15+
<version>4.4.1-SNAPSHOT</version>
1616

1717
<properties>
1818
<timestamp>${maven.build.timestamp}</timestamp>

tcMenuJavaApi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<groupId>com.thecoderscorner.tcmenu</groupId>
1212
<artifactId>tcMenuJavaAPI</artifactId>
1313
<name>tcMenuJavaAPI</name>
14-
<version>4.4.0</version>
14+
<version>4.4.1-SNAPSHOT</version>
1515
<description>A series of domain and serialisation components for the TcMenu library</description>
1616
<url>https://tcmenu.github.io/documentation/arduino-libraries/tc-menu/</url>
1717

tcMenuJavaApi/src/main/java/com/thecoderscorner/menu/domain/util/MenuItemFormatter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public String formatToWire(MenuItem item, final String text) {
3131
return MenuItemHelper.visitWithResult(item, new AbstractMenuItemVisitor<String>() {
3232
@Override
3333
public void anyItem(MenuItem item) {
34-
throw new IllegalArgumentException(item + "not editable");
34+
setResult(text);
3535
}
3636

3737
@Override

0 commit comments

Comments
 (0)