Skip to content

Commit

Permalink
Update Code for Github Release for v1.3
Browse files Browse the repository at this point in the history
Updated the name and release version.

There was an issue with the sample data. Hence, updated it.
  • Loading branch information
Darren-Tung committed Oct 17, 2024
1 parent 8809f95 commit 3f3d271
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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 = 'TalentSG.jar'
}

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);

Check warning on line 39 in src/main/java/seedu/address/MainApp.java

View check run for this annotation

Codecov / codecov/patch

src/main/java/seedu/address/MainApp.java#L39

Added line #L39 was not covered by tests

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

Expand Down
4 changes: 2 additions & 2 deletions src/main/java/seedu/address/model/util/SampleDataUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ public static Person[] getSamplePersons() {
new Person(new Name("Bernice Yu"), new Phone("99272758"), new Email("[email protected]"),
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("[email protected]"),
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")),
Expand Down

0 comments on commit 3f3d271

Please sign in to comment.