Skip to content

Commit d97e3b0

Browse files
committed
bump version
1 parent 93e757e commit d97e3b0

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ Or just double-click the program icon to launch the program in GUI mode.
1111
### Options:
1212
* `-c`: Launch the program in command line mode (GUI mode by default).
1313
* `maxTries`: The maximum number of tries to find the word (only in CLI mode).<br>
14+
## Download:
15+
- ['Releases' page](https://github.com/MCUmbrella/WordleHelper/releases)
16+
- [Development builds](https://github.com/MCUmbrella/WordleHelper/actions/workflows/maven.yml)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>vip.floatationdevice</groupId>
88
<artifactId>wordlehelper</artifactId>
9-
<version>2.1.1</version>
9+
<version>2.1.2</version>
1010

1111
<properties>
1212
<maven.compiler.source>8</maven.compiler.source>

src/main/java/vip/floatationdevice/wordlehelper/Common.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
public class Common
99
{
10-
public final static String PROGRAM_NAME = "WordleHelper 2.1.1";
10+
public final static String PROGRAM_NAME = "WordleHelper 2.1.2";
1111

1212
//regex: 5 letters
1313
public final static Pattern validWord = Pattern.compile("^[a-zA-Z]{5}$");

0 commit comments

Comments
 (0)