Skip to content

Commit a894f0f

Browse files
committed
bump version number
1 parent e9ed631 commit a894f0f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.org

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ It is based on [[https://github.com/chocoteam/choco-solver][choco-solver]] which
6666
<dependency>
6767
<groupId>fr.univ-cotedazur</groupId>
6868
<artifactId>cryptator</artifactId>
69-
<version>0.7.0-SNAPSHOT</version>
69+
<version>0.7.0</version>
7070
</dependency>
7171
#+END_EXAMPLE
7272

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<groupId>fr.univ-cotedazur</groupId>
1717
<artifactId>cryptator</artifactId>
1818
<packaging>jar</packaging>
19-
<version>0.7.0-SNAPSHOT</version>
19+
<version>0.7.0</version>
2020
<name>cryptator</name>
2121
<description>Constraint-based cryptarithm solver</description>
2222
<url>https://github.com/arnaud-m/cryptator</url>

src/main/java/cryptator/config/CryptaCmdConfig.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ public class CryptaCmdConfig extends CryptaLogConfig {
1919
@Option(name = "-g", handler = ExplicitBooleanOptionHandler.class, usage = "export solutions to graphviz format")
2020
private boolean exportGraphiz;
2121

22-
@Option(name = "-l", handler = ExplicitBooleanOptionHandler.class, usage = "use the bignum model (only + and =)")
22+
@Option(name = "-l", handler = ExplicitBooleanOptionHandler.class, usage = "use the bignum model (only +, *, and =)")
2323
private boolean useBigNum;
2424

25-
// TODO Check the argument
2625
@Option(name = "--crypt-command", usage = "the crypt command")
2726
private String cryptCommand = "crypt";
2827

0 commit comments

Comments
 (0)