Skip to content

Commit 8583fa4

Browse files
committed
2.2.8 Release
1 parent e815285 commit 8583fa4

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

Changelog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
Changelog for versions since 2.0.0.
44

5+
## 2.2.8
6+
7+
### Changes
8+
- Update French, Russian, and Brazilian Portuguese messages
9+
10+
### Bug Fixes
11+
- Fix Jumper and Runner abilities applying to the wrong skill
12+
- Fix error when parsing some damage source cause values
13+
- Fix idle action bar message not updating on reload
14+
- Fix skull profile missing error when opening leaderboard menu
15+
- Update stats on join on the main thread to fix errors
16+
17+
### API Changes
18+
- Add api methods to load and save offline users
19+
- Use UserManager#loadUser to load a user into memory
20+
- Use SkillsUser#save to save the user to storage asynchronously
21+
522
## 2.2.7
623

724
### New Features

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Release versions are published to the Maven central repository.
7373
<dependency>
7474
<groupId>dev.aurelium</groupId>
7575
<artifactId>auraskills-api-bukkit</artifactId>
76-
<version>2.2.0</version>
76+
<version>2.2.8</version>
7777
<scope>provided</scope>
7878
</dependency>
7979
```
@@ -86,7 +86,7 @@ repositories {
8686
}
8787
8888
dependencies {
89-
compileOnly 'dev.aurelium:auraskills-api-bukkit:2.2.0'
89+
compileOnly 'dev.aurelium:auraskills-api-bukkit:2.2.8'
9090
}
9191
```
9292
**Kotlin DSL:**
@@ -96,7 +96,7 @@ repositories {
9696
}
9797
9898
dependencies {
99-
compileOnly("dev.aurelium:auraskills-api-bukkit:2.2.0")
99+
compileOnly("dev.aurelium:auraskills-api-bukkit:2.2.8")
100100
}
101101
```
102102

bukkit/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,6 @@ fun extractChangelog(version: String): String {
170170
val result = headingPattern.find(fullChangelog)
171171

172172
return result?.groupValues?.get(1)?.trim()
173-
?: throw IllegalArgumentException("Failed to extract changelog section for version $version")
173+
?: ""
174174
}
175175

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
projectVersion=2.2.7
1+
projectVersion=2.2.8
22
supportedMCVersions=1.17,1.17.1,1.18,1.18.1,1.18.2,1.19,1.19.1,1.19.2,1.19.3,1.19.4,1.20,1.20.1,1.20.2,1.20.3,1.20.4,1.20.5,1.20.6,1.21,1.21.1,1.21.2,1.21.3,1.21.4

0 commit comments

Comments
 (0)