Skip to content

Commit

Permalink
Merge pull request #70 from Darren-Tung/chore/updating-code-for-githu…
Browse files Browse the repository at this point in the history
…b-release

Update Code for Github Release for v1.3
  • Loading branch information
rithanisk authored Oct 17, 2024
2 parents 8809f95 + 3f3d271 commit 32156b5
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);

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 32156b5

Please sign in to comment.