Skip to content

Commit 23dd2e3

Browse files
committed
Update CHANGELOG.md
[skip ci]
1 parent 98e1df0 commit 23dd2e3

File tree

1 file changed

+92
-3
lines changed

1 file changed

+92
-3
lines changed

CHANGELOG.md

Lines changed: 92 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,80 @@
11
Changelog
22
=========
33

4-
Versions marked with a `*` are not available on bintray!
4+
## Legend
5+
### `*`
6+
Version is not available on Bintray and can only be downloaded using jitpack.
7+
Use one of the below options. Remember to replace `{Release tag}` with the tag of the release.
8+
9+
<details>
10+
<summary>Installation</summary>
11+
**Gradle**:
12+
```gradle
13+
repositories{
14+
maven { url = "https://jitpack.io" }
15+
}
16+
17+
dependencies{
18+
compile group: 'com.github.botblock', name: 'JavaBotBlockAPI', version: '{Release tag}'
19+
}
20+
```
21+
22+
**Maven**:
23+
```xml
24+
<repositories>
25+
<repository>
26+
<id>jitpack</id>
27+
<url>https://jitpack.io</url>
28+
</repository>
29+
</repositories>
30+
31+
<dependencies>
32+
<dependency>
33+
<groupId>com.github.botblock</groupId>
34+
<artifactId>JavaBotBlockAPI</artifactId>
35+
<version>{Release tag}</version>
36+
</dependency>
37+
</dependencies>
38+
```
39+
</details>
40+
41+
### `**`
42+
Versions marked with this are available on bintray, but will require you, to add a download-url.
43+
Use one of the below options. Replace `{version}` with the version of your choice.
44+
45+
<details>
46+
<summary>Installation</summary>
47+
**Gradle**:
48+
```gradle
49+
repositories{
50+
maven { url = "https://dl.bintray.com/andre601/maven" }
51+
}
52+
53+
dependencies{
54+
compile group: 'org.botblock', name: 'JavaBotBlockAPI', version: '{version}'
55+
}
56+
```
57+
58+
**Maven**:
59+
```xml
60+
<repositories>
61+
<repository>
62+
<id>jitpack</id>
63+
<url>https://dl.bintray.com/andre601/maven</url>
64+
</repository>
65+
</repositories>
66+
67+
<dependencies>
68+
<dependency>
69+
<groupId>com.github.botblock</groupId>
70+
<artifactId>JavaBotBlockAPI</artifactId>
71+
<version>{version}</version>
72+
</dependency>
73+
</dependencies>
74+
```
75+
</details>
576

77+
____
678
## v4
779
- ### v4.0.0_0
880
- Updated packages from `com.andre601.javabotblockapi` to `org.botblock.javabotblockapi`.
@@ -28,8 +100,8 @@ Versions marked with a `*` are not available on bintray!
28100
- ### v4.1.1
29101
- `@DeprecatedSince` was slightly changed.
30102

31-
- ### v4.2.0
32-
- Added new get methods to GetAction
103+
- ### v4.2.0**
104+
- Added new get methods to GetAction:
33105
- `getDiscriminator(Long|String)`: Returns the discriminator of the bot or an empty String.
34106
- `getGitHub(Long|String)`: Returns GitHub url or an empty String.
35107
- `getLibrary(Long|String)`: Returns the library used by the bot or an empty String.
@@ -39,6 +111,23 @@ Versions marked with a `*` are not available on bintray!
39111
- `getWebsite(Long|String)`: Returns the website link of the bot or an empty String.
40112
- `getServerCount(Long|String id)` is now declared as `@Nullable` meaning result may be null.
41113

114+
- ### v4.2.1**
115+
- Removed unused imports.
116+
117+
- ### v4.2.2
118+
- Removed `GLENNBOTLIST_XYZ`
119+
120+
- ### v4.2.3
121+
- Deprecated `DISCORDBESTBOTS_XYZ`
122+
- Use `DISCORDEXTREMELIST_XYZ` instead as they merged their lists.
123+
124+
- ### v4.2.4
125+
- Added [`ARCANE_BOTCENTER_XYZ`](https://arcane-botcenter.xyz) and [`DBLISTA_PL`](https://dblista.pl)
126+
127+
- ### v4.2.5**
128+
- This was a test release for the attachment of zip files to the release. It failed.
129+
130+
____
42131
## v3
43132
- ### v3.0.0
44133
- Moved post and get methods to their own class

0 commit comments

Comments
 (0)