Skip to content

Commit b67ba5e

Browse files
committed
Add a notice regarding 4.0, also change all versions from 4.0.0 to just 4.0.
1 parent 17ef820 commit b67ba5e

File tree

9 files changed

+32
-13
lines changed

9 files changed

+32
-13
lines changed

README.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@ Hypixel Public API (Java)
33
This is a Java implementation of the Hypixel API. For discussing the API, requesting help or suggestions you can use the
44
GitHub [Discussions](https://github.com/HypixelDev/PublicAPI/discussions).
55

6+
## Note:
7+
8+
We are currently in the process of merging and prepping to release the Public API 4.0 client. Until then, you should
9+
continue to use 3.0.0 with the following:
10+
11+
```xml
12+
13+
<repository>
14+
<id>Hypixel</id>
15+
<url>https://repo.hypixel.net/repository/Hypixel/</url>
16+
</repository>
17+
18+
<dependency>
19+
<groupId>net.hypixel</groupId>
20+
<artifactId>HypixelAPI</artifactId>
21+
<version>3.0.0</version>
22+
</dependency>
23+
```
24+
625
### Documentation
726

827
Hypixel Public API documentation can be found at [https://api.hypixel.net/](https://api.hypixel.net/). Java

hypixel-api-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>net.hypixel</groupId>
88
<artifactId>hypixel-api-core</artifactId>
9-
<version>4.0.0-SNAPSHOT</version>
9+
<version>4.0-SNAPSHOT</version>
1010

1111
<properties>
1212
<maven.compiler.target>1.8</maven.compiler.target>

hypixel-api-core/src/main/java/net/hypixel/api/http/HypixelHttpClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
public interface HypixelHttpClient {
66

7-
String DEFAULT_USER_AGENT = "Hypixel PublicAPI/4.0.0";
7+
String DEFAULT_USER_AGENT = "Hypixel PublicAPI/4.0";
88

99
CompletableFuture<HypixelHttpResponse> makeRequest(String url);
1010

hypixel-api-example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hypixel-api</artifactId>
77
<groupId>net.hypixel</groupId>
8-
<version>4.0.0-SNAPSHOT</version>
8+
<version>4.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>net.hypixel</groupId>
3434
<artifactId>hypixel-api-transport-apache</artifactId>
35-
<version>4.0.0-SNAPSHOT</version>
35+
<version>4.0-SNAPSHOT</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>com.konghq</groupId>

hypixel-api-transport-apache/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ Hypixel Public API - Apache Transport
77
<dependency>
88
<groupId>net.hypixel</groupId>
99
<artifactId>hypixel-api-transport-apache</artifactId>
10-
<version>4.0.0</version>
10+
<version>4.0</version>
1111
</dependency>
1212
```
1313

1414
Can also be included with Gradle.
1515

1616
```gradle
1717
dependencies {
18-
implementation 'net.hypixel:hypixel-api-transport-apache:4.0.0'
18+
implementation 'net.hypixel:hypixel-api-transport-apache:4.0'
1919
}
2020
```
2121

hypixel-api-transport-apache/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hypixel-api</artifactId>
77
<groupId>net.hypixel</groupId>
8-
<version>4.0.0-SNAPSHOT</version>
8+
<version>4.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>net.hypixel</groupId>
3030
<artifactId>hypixel-api-core</artifactId>
31-
<version>4.0.0-SNAPSHOT</version>
31+
<version>4.0-SNAPSHOT</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>org.apache.httpcomponents</groupId>

hypixel-api-transport-unirest/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ Hypixel Public API - Unirest Transport
77
<dependency>
88
<groupId>net.hypixel</groupId>
99
<artifactId>hypixel-api-transport-unirest</artifactId>
10-
<version>4.0.0</version>
10+
<version>4.0</version>
1111
</dependency>
1212
```
1313

1414
Can also be included with Gradle.
1515

1616
```gradle
1717
dependencies {
18-
implementation 'net.hypixel:hypixel-api-transport-unirest:4.0.0'
18+
implementation 'net.hypixel:hypixel-api-transport-unirest:4.0'
1919
}
2020
```
2121

hypixel-api-transport-unirest/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>hypixel-api</artifactId>
77
<groupId>net.hypixel</groupId>
8-
<version>4.0.0-SNAPSHOT</version>
8+
<version>4.0-SNAPSHOT</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

@@ -28,7 +28,7 @@
2828
<dependency>
2929
<groupId>net.hypixel</groupId>
3030
<artifactId>hypixel-api-core</artifactId>
31-
<version>4.0.0-SNAPSHOT</version>
31+
<version>4.0-SNAPSHOT</version>
3232
</dependency>
3333
<dependency>
3434
<groupId>com.konghq</groupId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>net.hypixel</groupId>
88
<artifactId>hypixel-api</artifactId>
99
<packaging>pom</packaging>
10-
<version>4.0.0-SNAPSHOT</version>
10+
<version>4.0-SNAPSHOT</version>
1111

1212
<modules>
1313
<module>hypixel-api-core</module>

0 commit comments

Comments
 (0)