Skip to content

Commit

Permalink
Merge pull request AY2324S2-CS2103-F15-2#62 from AL-ZT/release
Browse files Browse the repository at this point in the history
Build update and Enable Assertions
  • Loading branch information
zoebelle-pang authored Mar 28, 2024
2 parents cee9467 + 3455b37 commit 4a219cf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ dependencies {
}

shadowJar {
archiveFileName = 'addressbook.jar'
archiveFileName = 'TutorsGo.jar'
}

run {
enableAssertions = true
}

defaultTasks 'clean', 'test'
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/MainApp.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
*/
public class MainApp extends Application {

public static final Version VERSION = new Version(0, 2, 2, true);
public static final Version VERSION = new Version(1, 3, 0, true);

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

Expand Down

0 comments on commit 4a219cf

Please sign in to comment.