Skip to content

Commit bf1ed04

Browse files
Brian OlsenBrian Olsen
Brian Olsen
authored and
Brian Olsen
committed
Update travis yml and move from 0.11.2 to 0.11.3
1 parent a3e91e3 commit bf1ed04

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

Diff for: .travis.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,15 @@ language: java
22
#ignore install step
33
install: true
44
sudo: false
5-
script: mvn clean install -Dmaven.javadoc.skip=true -DskipTests=false -Dgpg.skip=true
5+
script: mvn clean install -Dmaven.javadoc.skip=true -DskipTests=false -Dgpg.skip=true
6+
before_deploy:
7+
# Set up git user name and tag this commit
8+
- git config --local user.name "Brian Olsen"
9+
- git config --local user.email "[email protected]"
10+
- git tag "$(mvn -Dexec.executable='echo' -Dexec.args='${project.version}' --non-recursive exec:exec -q)"
11+
deploy:
12+
provider: releases
13+
api_key: "$Github_Oath_Token"
14+
skip_cleanup: true
15+
on:
16+
branch: master

Diff for: src/main/java/us/brianolsen/instructions/OSRMTextInstructions.java

+1-1
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.2";
21+
protected static final String MODULE_VERSION = "0.11.3";
2222
protected static final Gson gson = new Gson();
2323

2424
private NodeJS nodeJS;

0 commit comments

Comments
 (0)