Skip to content

Commit 3b417d1

Browse files
committed
bump version number
1 parent e8ae2c2 commit 3b417d1

File tree

5 files changed

+21
-2
lines changed

5 files changed

+21
-2
lines changed

README.org

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ It is based on [[https://github.com/chocoteam/choco-solver][choco-solver]] which
6464
<dependency>
6565
<groupId>fr.univ-cotedazur</groupId>
6666
<artifactId>cryptator</artifactId>
67-
<version>0.4.0-SNAPSHOT</version>
67+
<version>0.4.0</version>
6868
</dependency>
6969
#+END_EXAMPLE
7070

pom.xml

+1-1
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.4.0-SNAPSHOT</version>
19+
<version>0.4.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/CryptaOperator.java

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
import org.chocosolver.solver.expression.discrete.arithmetic.ArExpression;
1515

16+
/**
17+
* @see https://en.wikipedia.org/wiki/Relational_operator
18+
*/
1619
public enum CryptaOperator {
1720
ADD("+", (a, b) -> a.add(b), (a, b) -> a.add(b)),
1821
SUB("-", (a, b) -> a.subtract(b), (a, b) -> a.sub(b)),

src/test/java/cryptator/GenerateTest.java

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* This file is part of cryptator, https://github.com/arnaud-m/cryptator
3+
*
4+
* Copyright (c) 2021, Université Côte d'Azur. All rights reserved.
5+
*
6+
* Licensed under the BSD 3-clause license.
7+
* See LICENSE file in the project root for full license information.
8+
*/
19
package cryptator;
210

311
import static org.junit.Assert.assertEquals;

src/test/java/cryptator/WordArrayTest.java

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/**
2+
* This file is part of cryptator, https://github.com/arnaud-m/cryptator
3+
*
4+
* Copyright (c) 2021, Université Côte d'Azur. All rights reserved.
5+
*
6+
* Licensed under the BSD 3-clause license.
7+
* See LICENSE file in the project root for full license information.
8+
*/
19
package cryptator;
210

311
import static org.junit.Assert.assertArrayEquals;

0 commit comments

Comments
 (0)