From 3f3d271f8c25c41fa0cd79f58bc8071783cfa53f Mon Sep 17 00:00:00 2001 From: Darren-Tung <40617230+Darren-Tung@users.noreply.github.com> Date: Thu, 17 Oct 2024 22:27:18 +0800 Subject: [PATCH] Update Code for Github Release for v1.3 Updated the name and release version. There was an issue with the sample data. Hence, updated it. --- build.gradle | 2 +- src/main/java/seedu/address/MainApp.java | 2 +- src/main/java/seedu/address/model/util/SampleDataUtil.java | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 0db3743584e..0e3aad9a1ff 100644 --- a/build.gradle +++ b/build.gradle @@ -66,7 +66,7 @@ dependencies { } shadowJar { - archiveFileName = 'addressbook.jar' + archiveFileName = 'TalentSG.jar' } defaultTasks 'clean', 'test' diff --git a/src/main/java/seedu/address/MainApp.java b/src/main/java/seedu/address/MainApp.java index 678ddc8c218..4ee111ee9e4 100644 --- a/src/main/java/seedu/address/MainApp.java +++ b/src/main/java/seedu/address/MainApp.java @@ -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); diff --git a/src/main/java/seedu/address/model/util/SampleDataUtil.java b/src/main/java/seedu/address/model/util/SampleDataUtil.java index 9618683e69b..8c31a4b670e 100644 --- a/src/main/java/seedu/address/model/util/SampleDataUtil.java +++ b/src/main/java/seedu/address/model/util/SampleDataUtil.java @@ -38,14 +38,14 @@ public static Person[] getSamplePersons() { new Person(new Name("Bernice Yu"), new Phone("99272758"), new Email("berniceyu@example.com"), new Address("Blk 30 Lorong 3 Serangoon Gardens, #07-18"), new DesiredRole("Data Analyst"), - new Skills("JavaScript, HTML"), + new Skills("JavaScript"), new Experience("Intern at NTU"), new Status("Hired"), EMPTY_NOTE, getTagSet("colleagues", "friends")), new Person(new Name("Charlotte Oliveiro"), new Phone("93210283"), new Email("charlotte@example.com"), new Address("Blk 11 Ang Mo Kio Street 74, #11-04"), new DesiredRole("Project Manager"), - new Skills("C++, C#"), + new Skills("C"), new Experience("Intern at SIM"), new Status("Rejected"), EMPTY_NOTE, getTagSet("neighbours")),