Skip to content
This repository has been archived by the owner on May 20, 2023. It is now read-only.

Commit

Permalink
MainApp: bump MainApp#VERSION to v1.1.0 for release (#62)
Browse files Browse the repository at this point in the history
To prepare for v1.1.0 release, let's bump `MainApp#VERSION` to v1.1.0.
  • Loading branch information
Creastery authored and lycjackie committed Mar 4, 2019
1 parent ae1795a commit 937e43e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/seedu/address/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
*/
public class MainApp extends Application {

public static final Version VERSION = new Version(0, 6, 0, true);
public static final Version VERSION = new Version(1, 1, 0, false);

private static final Logger logger = LogsCenter.getLogger(MainApp.class);

Expand All @@ -56,7 +56,7 @@ public class MainApp extends Application {

@Override
public void init() throws Exception {
logger.info("=============================[ Initializing AddressBook ]===========================");
logger.info("=============================[ Initializing PlanWithEase ]===========================");
super.init();

AppParameters appParameters = AppParameters.parse(getParameters());
Expand Down Expand Up @@ -204,7 +204,7 @@ protected UserPrefs initPrefs(UserPrefsStorage storage) {
+ "Using default user prefs");
initializedPrefs = new UserPrefs();
} catch (IOException e) {
logger.warning("Problem while reading from the file. Will be starting with an empty AddressBook");
logger.warning("Problem while reading from the file. Will be starting with an empty PlanWithEase");
initializedPrefs = new UserPrefs();
}

Expand All @@ -220,13 +220,13 @@ protected UserPrefs initPrefs(UserPrefsStorage storage) {

@Override
public void start(Stage primaryStage) {
logger.info("Starting AddressBook " + MainApp.VERSION);
logger.info("Starting PlanWithEase " + MainApp.VERSION);
ui.start(primaryStage);
}

@Override
public void stop() {
logger.info("============================ [ Stopping Address Book ] =============================");
logger.info("============================ [ Stopping PlanWithEase ] =============================");
try {
storage.saveUserPrefs(model.getUserPrefs());
} catch (IOException e) {
Expand Down

0 comments on commit 937e43e

Please # to comment.