Skip to content

Commit 2df6a77

Browse files
author
TheProgramSrc
committed
v4.2.6 Changelog:
* Fixed version in SuperCoreAPI Update Checker
1 parent a814ae3 commit 2df6a77

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## v4.2.6 Changelog:
2+
```
3+
* Fixed version in SuperCoreAPI Update Checker
4+
```
5+
16
## v4.2.5 Changelog:
27
```
38
+ Added method to add an error to the last errors list

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>xyz.theprogramsrc</groupId>
88
<artifactId>SuperCoreAPI</artifactId>
9-
<version>4.2.5</version>
9+
<version>4.2.6</version>
1010
<packaging>jar</packaging>
1111

1212
<name>SuperCoreAPI</name>

src/main/java/xyz/theprogramsrc/supercoreapi/Base.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public void onCheckFail() {
2424

2525
@Override
2626
public void onCheckSuccess(String lastVersion) {
27-
String currentVersion = "4.2.3";
27+
String currentVersion = "4.2.6";
2828
int latest = Integer.parseInt(lastVersion.split(" ")[0].replaceAll("\\.", ""));
2929
int current = Integer.parseInt(currentVersion.split(" ")[0].replaceAll("\\.", ""));
3030
if(latest > current){

0 commit comments

Comments
 (0)