Skip to content

Commit

Permalink
Merge pull request #337 from ASAP-as-soon-as-possible/develop
Browse files Browse the repository at this point in the history
v 1.3.1
  • Loading branch information
KWY0218 authored Jan 1, 2025
2 parents 02f9f3a + 20d091f commit f9d7d5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'com.asap'
version = '1.3.0'
version = '1.3.1'

java {
sourceCompatibility = '17'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/asap/server/common/utils/DateUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class DateUtil {
public static LocalDate transformLocalDate(final String month, final String day) {
return LocalDate.of(2024, Integer.parseInt(month), Integer.parseInt(day));
return LocalDate.of(2025, Integer.parseInt(month), Integer.parseInt(day));
}

public static String getMonth(final LocalDate localDate) {
Expand Down

0 comments on commit f9d7d5d

Please sign in to comment.