Skip to content

Commit b8a8cfa

Browse files
authored
Merge pull request #222 from botblock/development
Version 6.6.4
2 parents 1841574 + e11eabb commit b8a8cfa

File tree

5 files changed

+12
-37
lines changed

5 files changed

+12
-37
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins{
77
id 'com.github.johnrengelman.shadow' version '5.2.0'
88
}
99

10-
def ver = new Version(major: 6, minor: 6, patch: 3)
10+
def ver = new Version(major: 6, minor: 6, patch: 4)
1111

1212
allprojects {
1313
apply plugin: 'maven-publish'

contributors.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Provides a site, service or similar that is used by the project (e.g. CI-Server)
2626
Helps maintaining this project, being it updating dependencies, or adding new features.
2727
- 📖 (Documentation)
2828
Helped updating or improving the documentation of this project.
29+
- 💻(Code)
30+
Contributed Code to improve the Project.
2931

3032
# List of contributors
3133
Below can you find a list of all currently aknowledged Contributors to our project.
@@ -53,4 +55,4 @@ Below can you find a list of all currently aknowledged Contributors to our proje
5355
<!-- markdownlint-restore -->
5456
<!-- prettier-ignore-end -->
5557

56-
<!-- ALL-CONTRIBUTORS-LIST:END -->
58+
<!-- ALL-CONTRIBUTORS-LIST:END -->

core/src/main/java/org/botblock/javabotblockapi/core/Info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class Info{
3939
/**
4040
* Patch version of the Wrapper.
4141
*/
42-
public static final int PATCH = 3;
42+
public static final int PATCH = 4;
4343

4444
/**
4545
* Full version in the format {@code major.minor.patch}.

core/src/main/java/org/botblock/javabotblockapi/core/Site.java

Lines changed: 6 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -139,22 +139,6 @@ public class Site{
139139
*/
140140
public static final Site DBLISTA_PL = new Site("dblista.pl", HttpMethod.GET);
141141

142-
/**
143-
* <a href="https://discordapps.dev" target="_blank">discordapps.dev</a>
144-
*
145-
* <p>Supported methods:
146-
* <ul>
147-
* <li>GET</li>
148-
* <li>POST</li>
149-
* </ul>
150-
*
151-
* @deprecated No longer available.
152-
*/
153-
@Deprecated
154-
@DeprecatedSince(major = 6, minor = 6, patch = 2)
155-
@PlannedRemoval(major = 6, minor = 6, patch = 4)
156-
public static final Site DISCORDAPPS_DEV = new Site("discordapps.dev");
157-
158142
/**
159143
* <a href="https://discord.boats" target="_blank">discord.boats</a>
160144
*
@@ -174,9 +158,14 @@ public class Site{
174158
* <li>GET</li>
175159
* </ul>
176160
*
161+
* @deprecated Site no longer exists.
162+
*
177163
* @since 6.3.0
178164
*/
179-
public static final Site DISCORDBOTDIRECTORY_NET = new Site("discordbotdirectory.net", HttpMethod.GET);
165+
@Deprecated
166+
@DeprecatedSince(major = 6, minor = 6, patch = 4)
167+
@PlannedRemoval(major = 6, minor = 6, patch = 6)
168+
public static final Site DISCORDBOTDIRECTORY_NET = new Site("discordbotdirectory.net");
180169

181170
/**
182171
* <a href="https://discordbotlist.com" target="_blank">discordbotlist.com</a>
@@ -267,22 +256,6 @@ public class Site{
267256
*/
268257
public static final Site FATESLIST_XYZ = new Site("fateslist.xyz", HttpMethod.GET, HttpMethod.POST);
269258

270-
/**
271-
* <a href="https://infinitybotlist.com" target="_blank">infinitybotlist.com</a>
272-
*
273-
* <p>Supported methods:
274-
* <ul>
275-
* <li>GET</li>
276-
* <li>POST</li>
277-
* </ul>
278-
*
279-
* @deprecated Domain changed. Use {@link #INFINITYBOTLIST_XYZ INFINITYBOTLIST_XYZ} instead
280-
*/
281-
@Deprecated
282-
@DeprecatedSince(major = 6, minor = 5, patch = 2, replacements = {"INFINITYBOTLIST_XYZ"})
283-
@PlannedRemoval(minor = 6, major = 5, patch = 4)
284-
public static final Site INFINITYBOTLIST_COM = new Site("infinitybotlist.com", HttpMethod.GET, HttpMethod.POST);
285-
286259
/**
287260
* <a href="https://infinitybotlist.xyz" target="_blank">infinitybotlist.xyz</a>
288261
*

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_242'){
2+
api(group: 'net.dv8tion', name: 'JDA', version: '4.2.0_247'){
33
exclude(module: 'opus-java')
44
}
55
implementation project(":core")

0 commit comments

Comments
 (0)