Skip to content

Commit

Permalink
Merge pull request #222 from eugenetangkj/release
Browse files Browse the repository at this point in the history
v1.4 Release
  • Loading branch information
eugenetangkj authored Apr 10, 2023
2 parents 44173be + 14436c6 commit a1135d6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -1350,7 +1350,7 @@ Assumptions: The sample data provided by InternBuddy is used, where there is a t
**Expected**: An error message is displayed in the Result Display. This is because `Interviewing`
is not a valid value for the `STATUS` field.

6. `find n/Google n/Meta s/New s/Assessment`
6. `find n/Google n/Samsung s/Applied s/Assessment`

**Expected**: Only the internship entry with company name `Google` and status `Assessment` is
filtered out. This is because all other internship entries do not have a matching value with both
Expand Down Expand Up @@ -1439,9 +1439,9 @@ Assumptions: The sample data provided by InternBuddy is used, where there is a t
**Expected**: An error message is displayed in the Result Display. This is because `Interviewing`
is not a valid value for the `STATUS` field.

6. `delete-field n/Google n/Meta s/Assessment s/Applied`
6. `delete-field n/Google n/Samsung s/Assessment s/Applied`

**Expected**: Only the internship with company name `Google` and status `Applied` is deleted,
**Expected**: Only the internship with company name `Google` and status `Assessment` is deleted,
because all the other internships do not have a matching field for both `CompanyName` and `Status`.

7. `delete-field s/Assessment s/Interview t/Android`
Expand Down
3 changes: 1 addition & 2 deletions docs/UserGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -732,8 +732,7 @@ Example:

<br/>

[//]: # (@@author DerrickSaltFish - reused with modifications)
[//]: # (Adapted from https://ay2223s1-cs2103t-w17-4.github.io/tp/UserGuide.html#navigating-the-user-guide)
[//]: # (@@author DerrickSaltFish)
### Saving your Internship Data

Your internship data for InternBuddy are saved automatically after any command that changes the data. The data are saved
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/seedu/internship/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(1, 3, 3, true);
public static final Version VERSION = new Version(1, 4, 1, true);

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

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/seedu/internship/MainAppTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class MainAppTest {
@Test
public void getVersionNumber_correct() {
assertEquals(MainApp.VERSION, new Version(1, 3, 3, true));
assertEquals(MainApp.VERSION, new Version(1, 4, 1, true));

}
}

0 comments on commit a1135d6

Please sign in to comment.