Skip to content

Commit be57a8a

Browse files
committed
1.19.4
1 parent ccdcd87 commit be57a8a

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

.github/workflows/maven.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@ jobs:
1111
- name: Set up JDK 17
1212
uses: actions/setup-java@v3
1313
with:
14-
java-version: '17'
15-
distribution: 'temurin'
14+
java-version: 17
15+
distribution: temurin
1616
cache: maven
1717
- name: Build with Maven
1818
run: mvn -B package --file pom.xml
19-
- name: Upload RandomSpawnPlus5
20-
uses: actions/upload-artifact@v3
19+
- name: Release RandomSpawnPlus5
20+
uses: marvinpinto/action-automatic-releases@latest
2121
with:
22-
name: RandomSpawnPlus5
23-
path: target/*.jar
22+
title: "RandomSpawnPlus5 v5.0.6"
23+
automatic_release_tag: "5.0.6"
24+
repo_token: "${{ secrets.GITHUB_TOKEN }}"
25+
files: "target"
26+
prerelease: false

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# RandomSpawnPlus5
22

3-
🔀 A random spawn plugin for Minecraft 1.19.2
3+
🔀 A random spawn plugin for Minecraft 1.19.4
44

5-
Native support 1.19.2
5+
Native support 1.19.4
66

77
Support 1.8.x - 1.19.x (maybe?)
88

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>systems.kscott</groupId>
88
<artifactId>randomspawnplus</artifactId>
9-
<version>5.0.5</version>
9+
<version>5.0.6</version>
1010
<packaging>jar</packaging>
1111

1212
<name>RandomSpawnPlus</name>
@@ -95,7 +95,7 @@
9595
<dependency>
9696
<groupId>io.papermc.paper</groupId>
9797
<artifactId>paper-api</artifactId>
98-
<version>1.19.2-R0.1-SNAPSHOT</version>
98+
<version>1.19.4-R0.1-SNAPSHOT</version>
9999
<scope>provided</scope>
100100
</dependency>
101101
<dependency>
@@ -106,7 +106,7 @@
106106
<dependency>
107107
<groupId>org.projectlombok</groupId>
108108
<artifactId>lombok</artifactId>
109-
<version>1.18.24</version>
109+
<version>1.18.26</version>
110110
<scope>provided</scope>
111111
</dependency>
112112
<dependency>

src/main/resources/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#############################
22
# RandomSpawnPlus5 #
3-
# Version 5.0.5 #
3+
# Version 5.0.6 #
44
# by @89apt89 & @Dreeam #
55
#############################
66

src/main/resources/lang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#############################
22
# RandomSpawnPlus5 #
3-
# Version 5.0.5 #
3+
# Version 5.0.6 #
44
# by @89apt89 & @Dreeam #
55
#############################
66

0 commit comments

Comments
 (0)