Skip to content

Commit 5281e63

Browse files
committed
Fix wrong Site name in Sites.java
1 parent 8ad0412 commit 5281e63

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins{
77
}
88

99
group = 'com.andre601'
10-
version = '2.3.3'
10+
version = '2.3.4'
1111

1212
sourceCompatibility = 1.8
1313

release-notes.md

+4
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@
4646
- Removed `discordbotlist.us.to`
4747
- Removed GitHub Actions for now.
4848

49+
- ### v2.3.4
50+
- Sites updated:
51+
- Fixed wrong Site name from DISCORSDBESTBOTS\_XYZ to DISCORDBESTBOTS_XYZ
52+
4953
____
5054
## v1
5155

src/main/java/com/andre601/javabotblockapi/Site.java

+7-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
* Enum class with all currently supported sites of BotBlock.org.
2323
* <br>May be used in {@link com.andre601.javabotblockapi.BotBlockAPI BotBlockAPI} or
2424
* {@link com.andre601.javabotblockapi.RequestHandler RequestHandler}.
25+
*
26+
* @since v2.1.0
2527
*/
2628
public enum Site {
2729
/**
@@ -66,12 +68,14 @@ public enum Site {
6668
DISCORD_BOTS_GG("discord.bots.gg"),
6769
/**
6870
* <a href="https://discordextremelist.xyz" target="_blank">discordextremelist.xyz</a>
71+
*
72+
* @since v2.3.3
6973
*/
7074
DISCORDEXTREMELIST_XYZ("discordextremelist.xyz"),
7175
/**
7276
* <a href="https://discordsbestbots.xyz" target="_blank">discordsbestbots.xyz</a>
7377
*/
74-
DISCORSDBESTBOTS_XYZ("discordsbestbots.xyz"),
78+
DISCORDSBESTBOTS_XYZ("discordsbestbots.xyz"),
7579
/**
7680
* <a href="https://discordbots.fun" target="_blank">discordbots.fun</a>
7781
*/
@@ -94,6 +98,8 @@ public enum Site {
9498
WONDERBOTLIST_COM("wonderbotlist.com"),
9599
/**
96100
* <a href="https://yabl.xyz" target="_blank">yabl.xyz</a>
101+
*
102+
* @since v2.1.1
97103
*/
98104
YABL_XYZ("yabl.xyz");
99105

0 commit comments

Comments
 (0)