Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
released 1.0.0-BETA
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Robertze committed Nov 11, 2015
1 parent 460927a commit c3febd3
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.kritsit.casetracker</groupId>
<artifactId>case-tracker</artifactId>
<version>0.2.1-ALPHA</version>
<version>1.0.0-BETA</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import java.io.IOException;

public class CaseTrackerClient extends Application {
private static final String VERSION = "0.2.1-ALPHA";
private static final String VERSION = "1.0.0-BETA";
private static final Logger logger = LoggerFactory.getLogger(CaseTrackerClient.class);

public static void main(String[] args) {
Expand Down
2 changes: 1 addition & 1 deletion client/src/main/resources/ui/fxml/AboutFrame.fxml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<Font name="System Bold" size="40.0" />
</font>
</Text>
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Version: 0.2.1-ALPHA">
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="Version: 1.0.0-BETA">
<VBox.margin>
<Insets bottom="5.0" />
</VBox.margin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ public void setUp() {

public void testGetVersion() {
String version = CaseTrackerClient.getVersion();
assertEquals("0.2.1-ALPHA", version);
assertEquals("1.0.0-BETA", version);
}
}
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.kritsit.casetracker</groupId>
<artifactId>case-tracker</artifactId>
<packaging>pom</packaging>
<version>0.2.1-ALPHA</version>
<version>1.0.0-BETA</version>
<name>CaseTracker</name>
<description>
CaseTracker is a case tracking system for the South African NSPCA.
Expand Down
2 changes: 1 addition & 1 deletion scripts/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function run_server
{
if [ "$JavaPID" == "" ]; then
cd ./server
java -jar ./target/server-0.2.1-ALPHA-jar-with-dependencies.jar &
java -jar ./target/server-1.0.0-BETA-jar-with-dependencies.jar &
JavaPID=$!
cd ..
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/start_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
#

cd $1/server
java -jar target/server-0.2.1-ALPHA-jar-with-dependencies.jar > /dev/null 2>&1 &
java -jar target/server-1.0.0-BETA-jar-with-dependencies.jar > /dev/null 2>&1 &
2 changes: 1 addition & 1 deletion scripts/stop_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# Stops the server
#

pkill -f "java -jar target/server-0.2.1-ALPHA-jar-with-dependencies.jar"
pkill -f "java -jar target/server-1.0.0-BETA-jar-with-dependencies.jar"
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.kritsit.casetracker</groupId>
<artifactId>case-tracker</artifactId>
<version>0.2.1-ALPHA</version>
<version>1.0.0-BETA</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.io.IOException;

public class CaseTrackerServer {
private static final String VERSION = "0.2.1-ALPHA";
private static final String VERSION = "1.0.0-BETA";
private static final Logger logger = LoggerFactory.getLogger(CaseTrackerServer.class);
private IListeningService listener;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void setUp() {

public void testVersion() {
String version = CaseTrackerServer.getVersion();
assertTrue("0.2.1-ALPHA".equals(version));
assertTrue("1.0.0-BETA".equals(version));
}

public void tearDown() {
Expand Down

0 comments on commit c3febd3

Please sign in to comment.