Skip to content

Commit

Permalink
Update sample data
Browse files Browse the repository at this point in the history
  • Loading branch information
yezkez committed Nov 11, 2023
1 parent 8a44d28 commit 35096c5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ dependencies {
}

shadowJar {
archiveFileName = 'addressbook.jar'
archiveFileName = 'v1.3.1.jar'
}

run {
Expand Down
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, 1, true);

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

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/model/util/SampleDataUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static Person[] getSamplePersons() {
new Person(new Name("Alex Yeoh"), new Phone("87438807"), new Email("[email protected]"),
new Gender("M"), new Age(21), new Ethnicity("Chinese"),
new Nric("T1341367E"), new Address("Blk 30 Geylang Street 29, #06-40"),
getTagSet()),
getTagSet("on antibiotics")),
new Person(new Name("Bernice Yu"), new Phone("99272758"), new Email("[email protected]"),
new Gender("F"), new Age(16), new Ethnicity("Chinese"),
new Nric("T1231437E"), new Address("Blk 30 Lorong 3 Serangoon Gardens, #07-18"),
Expand Down

0 comments on commit 35096c5

Please sign in to comment.