Skip to content

Commit

Permalink
missed some version changes
Browse files Browse the repository at this point in the history
  • Loading branch information
dickschoeller committed Apr 28, 2017
1 parent 877a8cb commit 9f320ca
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ role to see living people.
* Place GEDCOM files in /var/lib/gedbrowser
* Create /var/lib/gedbrowser/userFile.csv rows are:
username,firstname,lastname,email,password,role,role...
* java -jar gedbrowser/target/gedbrowser-1.1.2-SNAPSHOT.jar
* java -jar gedbrowser/target/gedbrowser-1.1.2.jar

Running with Docker requires running the MongoDB with Docker. The following
commands allow you to do this without conflicting ports with a native mongod
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public abstract class GedObject {
/** */
protected static final String DEFAULT_IDX_NAME = "";
/** */
public static final String VERSION = "1.1.2-SNAPSHOT";
public static final String VERSION = "1.1.2";
/** */
protected static final String DEFAULT_SURNAME = "";
/** */
Expand Down
2 changes: 1 addition & 1 deletion gedbrowser/src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM java:8
VOLUME /tmp
ADD gedbrowser-1.1.2-SNAPSHOT.jar gedbrowser.jar
ADD gedbrowser-1.1.2.jar gedbrowser.jar
EXPOSE 8080
EXPOSE 8081
ENV spring.data.mongodb.host=mongo
Expand Down
2 changes: 1 addition & 1 deletion gedbrowser/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
| (_| | __/ (_| | |_) | | | (_) \ V V /\__ \ __/ |
\__, |\___|\__,_|_.__/|_| \___/ \_/\_/ |___/\___|_|
__/ |
|___/ gedbrowser-1.1.2-SNAPSHOT
|___/ gedbrowser-1.1.2
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public void testApplicationInfoName() {
@Test
public void testApplicationInfoVersion() {
assertEquals("Version mismatch",
"1.1.2-SNAPSHOT", appInfo.getVersion());
"1.1.2", appInfo.getVersion());
}

/** */
Expand Down
2 changes: 1 addition & 1 deletion geoservice/src/main/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM java:8
VOLUME /tmp
ADD geoservice-1.1.2-SNAPSHOT.jar geoservice.jar
ADD geoservice-1.1.2.jar geoservice.jar
EXPOSE 8080
EXPOSE 8081
ENV spring.data.mongodb.host=mongo
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public final class ApplicationInfo {
/** */
private static final String NAME = "gedbrowser-geoservice";
/** */
private static final String VERSION = "1.1.2-SNAPSHOT";
private static final String VERSION = "1.1.2";
/** */
private static final String APPLICATION_URL =
"https://github.com/dickschoeller/gedbrowser";
Expand Down
2 changes: 1 addition & 1 deletion geoservice/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
| (_| | __/ (_) \__ \ __/ | \ V /| | (_| __/
\__, |\___|\___/|___/\___|_| \_/ |_|\___\___|
__/ |
|___/ gedbrowser-geoservice-1.1.2-SNAPSHOT
|___/ gedbrowser-geoservice-1.1.2
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,6 @@ public void testApplicationInfoName() {
@Test
public void testApplicationInfoVersion() {
assertEquals("Version mismatch",
"1.1.2-SNAPSHOT", appInfo.getVersion());
"1.1.2", appInfo.getVersion());
}
}

0 comments on commit 9f320ca

Please sign in to comment.