Skip to content

Commit

Permalink
Fix wrong Site name in Sites.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre601 committed Sep 25, 2019
1 parent 8ad0412 commit 5281e63
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins{
}

group = 'com.andre601'
version = '2.3.3'
version = '2.3.4'

sourceCompatibility = 1.8

Expand Down
4 changes: 4 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
- Removed `discordbotlist.us.to`
- Removed GitHub Actions for now.

- ### v2.3.4
- Sites updated:
- Fixed wrong Site name from DISCORSDBESTBOTS\_XYZ to DISCORDBESTBOTS_XYZ

____
## v1

Expand Down
8 changes: 7 additions & 1 deletion src/main/java/com/andre601/javabotblockapi/Site.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
* Enum class with all currently supported sites of BotBlock.org.
* <br>May be used in {@link com.andre601.javabotblockapi.BotBlockAPI BotBlockAPI} or
* {@link com.andre601.javabotblockapi.RequestHandler RequestHandler}.
*
* @since v2.1.0
*/
public enum Site {
/**
Expand Down Expand Up @@ -66,12 +68,14 @@ public enum Site {
DISCORD_BOTS_GG("discord.bots.gg"),
/**
* <a href="https://discordextremelist.xyz" target="_blank">discordextremelist.xyz</a>
*
* @since v2.3.3
*/
DISCORDEXTREMELIST_XYZ("discordextremelist.xyz"),
/**
* <a href="https://discordsbestbots.xyz" target="_blank">discordsbestbots.xyz</a>
*/
DISCORSDBESTBOTS_XYZ("discordsbestbots.xyz"),
DISCORDSBESTBOTS_XYZ("discordsbestbots.xyz"),
/**
* <a href="https://discordbots.fun" target="_blank">discordbots.fun</a>
*/
Expand All @@ -94,6 +98,8 @@ public enum Site {
WONDERBOTLIST_COM("wonderbotlist.com"),
/**
* <a href="https://yabl.xyz" target="_blank">yabl.xyz</a>
*
* @since v2.1.1
*/
YABL_XYZ("yabl.xyz");

Expand Down

0 comments on commit 5281e63

Please sign in to comment.