Skip to content

Commit 3573a00

Browse files
committed
🔧 Bump version to 4.4.1-SNAPSHOT, update PaperMC to 1.21.8, dependencies, and build tools
1 parent 423420f commit 3573a00

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
# 💻 For Developers
1010

11-
This library is designed to work specifically with PaperMC version 1.21.6.<br/>
11+
This library is designed to work specifically with PaperMC version 1.21.8.<br/>
1212
Running on Java 21. Use with other Minecraft versions at your own risk.
1313

1414
Based on our testing, version 4.2.0 of Plus is the most compatible with older versions of Minecraft.
1515
If you are using a Minecraft version other than 1.21.3, we recommend using Plus version 4.3.1.
16-
For Minecraft 1.21.6 or newer, use the latest version of Plus for optimal compatibility.
16+
For Minecraft 1.21.8 or newer, use the latest version of Plus for optimal compatibility.
1717

1818
## 🐘 Gradle
1919
### Groovy
@@ -23,7 +23,7 @@ repositories {
2323
maven { url = 'https://central.sonatype.com/repository/maven-snapshots/' }
2424
}
2525
dependencies {
26-
implementation 'com.marcusslover:plus:4.4.0-SNAPSHOT'
26+
implementation 'com.marcusslover:plus:4.4.1-SNAPSHOT'
2727
}
2828
```
2929
### Kotlin
@@ -33,7 +33,7 @@ repositories {
3333
maven("https://central.sonatype.com/repository/maven-snapshots/")
3434
}
3535
dependencies {
36-
implementation("com.marcusslover:plus:4.4.0-SNAPSHOT")
36+
implementation("com.marcusslover:plus:4.4.1-SNAPSHOT")
3737
}
3838
```
3939
## 🦢 Maven
@@ -45,6 +45,6 @@ dependencies {
4545
<dependency>
4646
<groupId>com.marcusslover</groupId>
4747
<artifactId>plus</artifactId>
48-
<version>4.4.0-SNAPSHOT</version>
48+
<version>4.4.1-SNAPSHOT</version>
4949
</dependency>
5050
```

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
plugins {
22
id 'java'
33
id 'maven-publish'
4-
id 'com.gradleup.shadow' version '8.3.0'
4+
id 'com.gradleup.shadow' version '9.2.2'
55
}
66

77
group = 'com.marcusslover'
8-
version = '4.4.0-SNAPSHOT'
8+
version = '4.4.1-SNAPSHOT'
99

1010
ext {
1111
isRelease = !version.toString().endsWith("SNAPSHOT")
@@ -18,16 +18,16 @@ repositories {
1818
}
1919

2020
dependencies {
21-
compileOnly 'org.jetbrains:annotations:26.0.1'
22-
compileOnly 'io.papermc.paper:paper-api:1.21.6-R0.1-SNAPSHOT'
21+
compileOnly 'org.jetbrains:annotations:26.0.2-1'
22+
compileOnly 'io.papermc.paper:paper-api:1.21.8-R0.1-SNAPSHOT'
2323
compileOnly 'com.comphenix.protocol:ProtocolLib:5.3.0'
2424

25-
compileOnly 'org.projectlombok:lombok:1.18.36'
26-
annotationProcessor 'org.projectlombok:lombok:1.18.36'
25+
compileOnly 'org.projectlombok:lombok:1.18.42'
26+
annotationProcessor 'org.projectlombok:lombok:1.18.42'
2727

28-
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.4'
29-
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.4'
30-
testImplementation 'io.papermc.paper:paper-api:1.21.6-R0.1-SNAPSHOT'
28+
testImplementation 'org.junit.jupiter:junit-jupiter:6.0.0'
29+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
30+
testImplementation 'io.papermc.paper:paper-api:1.21.8-R0.1-SNAPSHOT'
3131
}
3232

3333
java {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

src/main/resources/plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Plus
22
main: com.marcusslover.plus.PlusPlugin
3-
version: 4.3.0-SNAPSHOT
3+
version: 4.4.1-SNAPSHOT
44
description: "A set of tools used for programming Minecraft plugins."
55
website: "https://github.com/MarcusSlover/Plus"
66
api-version: 1.21.1

0 commit comments

Comments
 (0)