Skip to content

Commit b2c75b4

Browse files
committed
Bump version and update dependencies
1 parent ae81848 commit b2c75b4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins{
99
id 'net.kyori.blossom' version '1.1.0'
1010
}
1111

12-
def ver = new Version(major: 6, minor: 1, revision: 0)
12+
def ver = new Version(major: 6, minor: 2, patch: 0)
1313

1414
allprojects {
1515
apply plugin: 'com.jfrog.bintray'
@@ -256,14 +256,14 @@ publishing {
256256
}
257257

258258
class Version{
259-
String major, minor, revision
259+
String major, minor, patch
260260

261261
static String getBuild(){
262262
System.getenv("BUILD_NUMBER") ? "_" + System.getenv("BUILD_NUMBER") :
263263
System.getProperty("BUILD_NUMBER") ? "_" + System.getProperty("BUILD_NUMBER") : ""
264264
}
265265

266266
String toString(){
267-
"$major.$minor.${revision}$build"
267+
"$major.$minor.${patch}$build"
268268
}
269269
}

javacord/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dependencies {
2-
api group: 'org.javacord', name: 'javacord', version: '3.0.7'
2+
api group: 'org.javacord', name: 'javacord', version: '3.1.1'
33
implementation project(":core")
44
implementation project(":request")
55
}

jda/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dependencies {
2-
api(group: 'net.dv8tion', name: 'JDA', version: '4.2.0_204'){
2+
api(group: 'net.dv8tion', name: 'JDA', version: '4.2.0_207'){
33
exclude(module: 'opus-java')
44
}
55
implementation project(":core")

0 commit comments

Comments
 (0)