Skip to content

Commit 6b7e506

Browse files
committed
Bump version to 6.3.3
Also remove deprecated HYDROGENBOTS_CLUB
1 parent 604a6e9 commit 6b7e506

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

build.gradle

+1-1
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: 3, patch: 2)
12+
def ver = new Version(major: 6, minor: 3, patch: 3)
1313

1414
allprojects {
1515
apply plugin: 'com.jfrog.bintray'

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

+2-12
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* Class containing all (known) Bot lists.
3030
* <br>The static instances of this class allow the easy use within various methods of the JavaBotBlockAPI.
3131
*
32-
* <p>Keep in mind that not all Sites support eithere GET or POST requests. You may use {@link #supportsGet() supportsGet()}
32+
* <p>Keep in mind that not all Sites support either GET or POST requests. You may use {@link #supportsGet() supportsGet()}
3333
* or {@link #supportsPost() supportsPost()} methods to check whether the instance supports GET and/or POST respectively.
3434
*
3535
* @since 6.3.0
@@ -137,16 +137,6 @@ public class Site{
137137
*/
138138
public static final Site DISFORGE_COM = new Site("disforge.com", HttpMethod.POST);
139139

140-
/**
141-
* <a href="https://hydrogenbots.club" target="_blank">hydrogenbots.club</a>
142-
*
143-
* @deprecated Domain redirects to a weird foreign store.
144-
*/
145-
@Deprecated
146-
@DeprecatedSince(major = 6, minor = 3, patch = 1)
147-
@PlannedRemoval(major = 6, minor = 3, patch = 3)
148-
public static final Site HYDROGENBOTS_CLUB = new Site("hydrogenbots.club");
149-
150140
/**
151141
* <a href="https://infinitybotlist.com" target="_blank">infinitybotlist.com</a>
152142
*/
@@ -160,7 +150,7 @@ public class Site{
160150
@Deprecated
161151
@DeprecatedSince(major = 6, minor = 3, patch = 2)
162152
@PlannedRemoval(major = 6, minor = 3, patch = 4)
163-
public static final Site MYTHICALBOTS_XYZ = new Site("mythicalbots.xyz", HttpMethod.GET, HttpMethod.POST);
153+
public static final Site MYTHICALBOTS_XYZ = new Site("mythicalbots.xyz");
164154

165155
/**
166156
* <a href="https://space-bot-list.xyz" target="_blank">space-bot-list.xyz</a>

0 commit comments

Comments
 (0)