Skip to content

Commit 4238202

Browse files
authored
Merge pull request #1153 from lavalink-devs/dev
release 4.1.1
2 parents 059040a + 6024db5 commit 4238202

File tree

5 files changed

+32
-62
lines changed

5 files changed

+32
-62
lines changed

.travis.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

build.gradle.kts

Lines changed: 28 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -71,41 +71,42 @@ subprojects {
7171
logger.lifecycle("Not publishing to maven.lavalink.dev because credentials are not set")
7272
}
7373
}
74-
configure<MavenPublishBaseExtension> {
75-
coordinates(group.toString(), project.the<BasePluginExtension>().archivesName.get(), version.toString())
76-
val mavenCentralUsername = findProperty("mavenCentralUsername") as String?
77-
val mavenCentralPassword = findProperty("mavenCentralPassword") as String?
78-
if (!mavenCentralUsername.isNullOrEmpty() && !mavenCentralPassword.isNullOrEmpty()) {
79-
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL, false)
80-
if (release) {
74+
// only publish releases to central portal
75+
if (release) {
76+
configure<MavenPublishBaseExtension> {
77+
coordinates(group.toString(), project.the<BasePluginExtension>().archivesName.get(), version.toString())
78+
val mavenCentralUsername = findProperty("mavenCentralUsername") as String?
79+
val mavenCentralPassword = findProperty("mavenCentralPassword") as String?
80+
if (!mavenCentralUsername.isNullOrEmpty() && !mavenCentralPassword.isNullOrEmpty()) {
81+
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL, false)
8182
signAllPublications()
83+
} else {
84+
logger.lifecycle("Not publishing to OSSRH due to missing credentials")
8285
}
83-
} else {
84-
logger.lifecycle("Not publishing to OSSRH due to missing credentials")
85-
}
8686

87-
pom {
88-
url = "https://github.com/lavalink-devs/Lavalink"
87+
pom {
88+
url = "https://github.com/lavalink-devs/Lavalink"
8989

90-
licenses {
91-
license {
92-
name = "MIT License"
93-
url = "https://github.com/lavalink-devs/Lavalink/blob/main/LICENSE"
90+
licenses {
91+
license {
92+
name = "MIT License"
93+
url = "https://github.com/lavalink-devs/Lavalink/blob/main/LICENSE"
94+
}
9495
}
95-
}
9696

97-
developers {
98-
developer {
99-
id = "freyacodes"
100-
name = "Freya Arbjerg"
101-
url = "https://www.arbjerg.dev"
97+
developers {
98+
developer {
99+
id = "freyacodes"
100+
name = "Freya Arbjerg"
101+
url = "https://www.arbjerg.dev"
102+
}
102103
}
103-
}
104104

105-
scm {
106-
url = "https://github.com/lavalink-devs/Lavalink/"
107-
connection = "scm:git:git://github.com/lavalink-devs/Lavalink.git"
108-
developerConnection = "scm:git:ssh://[email protected]/lavalink-devs/Lavalink.git"
105+
scm {
106+
url = "https://github.com/lavalink-devs/Lavalink/"
107+
connection = "scm:git:git://github.com/lavalink-devs/Lavalink.git"
108+
developerConnection = "scm:git:ssh://[email protected]/lavalink-devs/Lavalink.git"
109+
}
109110
}
110111
}
111112
}

docs/changelog/v4.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v4.1.1
2+
* Updated Koe to `2.1.1` fixing voice gateway not connecting in https://github.com/lavalink-devs/Lavalink/commit/6f594a9154b48d1b72b1a6d65446c667f65ac986
3+
14
## v4.1.0
25
* Added plugin update checker on start in https://github.com/lavalink-devs/Lavalink/pull/1121
36
* Added full cause stack trace in exception object in https://github.com/lavalink-devs/Lavalink/pull/1128

jitpack.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fun VersionCatalogBuilder.spring() {
3737

3838
fun VersionCatalogBuilder.voice() {
3939
version("lavaplayer", "2.2.3")
40-
version("koe", "2.1.0")
40+
version("koe", "2.1.1")
4141

4242
library("lavaplayer", "dev.arbjerg", "lavaplayer").versionRef("lavaplayer")
4343
library("lavaplayer-ip-rotator", "dev.arbjerg", "lavaplayer-ext-youtube-rotator").versionRef("lavaplayer")

0 commit comments

Comments
 (0)