Skip to content

Commit 432972a

Browse files
Brian OlsenBrian Olsen
authored andcommitted
Update to v0.11.2
1 parent 3403a90 commit 432972a

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

pom.xml

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

55
<groupId>com.github.brianolsen87</groupId>
66
<artifactId>text-instructions</artifactId>
7-
<version>0.11.1</version>
7+
<version>0.11.2</version>
88
<packaging>jar</packaging>
99

1010
<name>OSRM Text Instructions - Java J2V8 Wrapper</name>

src/main/java/us/brianolsen/instructions/OSRMTextInstructions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class OSRMTextInstructions implements Closeable {
1818
protected static final String DEFAULT_VERSION = "v5";
1919
protected static final String DEFAULT_LANGUAGE = "en";
2020
protected static final String MODULE_NAME = "osrm-text-instructions";
21-
protected static final String MODULE_VERSION = "0.11.1";
21+
protected static final String MODULE_VERSION = "0.11.2";
2222
protected static final Gson gson = new Gson();
2323

2424
private NodeJS nodeJS;

src/test/java/us/brianolsen/instructions/OSRMTextInstructionsSimpleCompileTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public void testSimpleCompileCommands() {
5959
maneuver.setModifier("sharp right");
6060
step.setManeuver(maneuver);
6161

62-
assertEquals("Take a sharp right at the fork onto Route 66", textInstructions.compile("en", step, null));
62+
assertEquals("Take a sharp right onto Route 66", textInstructions.compile("en", step, null));
6363
assertEquals("Gire a la derecha en el cruce en Route 66", textInstructions.compile("es", step, null));
6464
assertEquals("Svolta a destra al bivio in Route 66", textInstructions.compile("it", step, null));
6565
assertEquals("Rechtsaf op de splitsing naar Route 66", textInstructions.compile("nl", step, null));

0 commit comments

Comments
 (0)