Releases: botblock/JavaBotBlockAPI
v4.0.3: fixed version
I didn't remove BUILD_NUMBER: 0 from the gradle.yml, making the version 4.0.2_0 and not 4.0.2. My bad.
Installation
Gradle
Use this in your build.gradle
repositories{
    jcenter()
}
dependencies{
    compile group: 'org.botblock', name: 'JavaBotBlockAPI', version: '4.0.3'
}Maven
Use this in your pom.xml
<dependencies>
  <dependency>
    <groupId>org.botblock</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>4.0.3</version>
  </dependency>
</dependencies>v4.0.2: Update version system [Invalid]
Invalid
This version is not on bintray due to it still being#.#.#_#
Use v4.0.3
The version system got changed.
Releases should now be back to #.#.# while Jenkins builds are #.#.#_#
Installation
Gradle
Use this in your build.gradle
repositories{
    jcenter()
}
dependencies{
    compile group: 'org.botblock', name: 'JavaBotBlockAPI', version: '4.0.2'
}Maven
Use this in your pom.xml
<dependencies>
  <dependency>
    <groupId>org.botblock</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>4.0.2</version>
  </dependency>
</dependencies>v4.0.1: Smaller changes to RatelimitedException
Changed the message that the RatelimitedException would give, making it (hopefully) clearer to read.
Installation
Gradle
Use this in your build.gradle
repositories{
    jcenter()
}
dependencies{
    compile group: 'org.botblock', name: 'JavaBotBlockAPI', version: '4.0.1_0'
}Maven
Use this in your pom.xml
<dependencies>
  <dependency>
    <groupId>org.botblock</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>4.0.1_0</version>
  </dependency>
</dependencies>v4.0.0
This is a breaking change due to the package being changed from com.andre601 to org.botblock
Also, GitHub Action has been updated to (yet again) implement GitHub packages, hopefully with a successful publish this time.
Update:
GitHub packages failed.... again. But support said it might actually be an issue on their end.
Installation
Gradle
Use this in your build.gradle
repositories{
    jcenter()
}
dependencies{
    compile group: 'org.botblock', name: 'JavaBotBlockAPI', version: '4.0.0_0'
}Maven
Use this in your pom.xml
<dependencies>
  <dependency>
    <groupId>org.botblock</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>4.0.0_0</version>
  </dependency>
</dependencies>v3.3.2: Minor change to GitHub Action
GH Action fix to depend on the publish job before triggering the sendMessage job.
Installation
Gradle
Use this in your build.gradle
repositories{
    jcenter()
}
dependencies{
    compile group: 'com.andre601', name: 'JavaBotBlockAPI', version: '3.3.2_0'
}Maven
Use this in your pom.xml
<dependencies>
  <dependency>
    <groupId>com.andre601</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>3.3.2_0</version>
  </dependency>
</dependencies>v3.3.1: Discord notifications
Added discord notification to the GH actions task. This can be seen as first test.
Dependencies updated:
- JDA:
- 4.1.0_89to- 4.1.0_90
 
Installation
Gradle
Use this in your build.gradle
repositories{
    jcenter()
}
dependencies{
    compile group: 'com.andre601', name: 'JavaBotBlockAPI', version: '3.3.1_0'
}Maven
Use this in your pom.xml
<dependencies>
  <dependency>
    <groupId>com.andre601</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>3.3.1_0</version>
  </dependency>
</dependencies>v3.3.0: Changed version setup
The displayed version should now look a bit different than normal.
If this release is successful, will the newly displayed version be 3.3.0_0
The reason for this is the changed way, the version is created/set in the build.gradle, using a new system, that adds a build-number at the end of the version itself.
Installation
Gradle
Use this in your build.gradle
repositories{
    jcenter()
}
dependencies{
    compile group: 'com.andre601', name: 'JavaBotBlockAPI', version: '3.3.0_0'
}Maven
Use this in your pom.xml
<dependencies>
  <dependency>
    <groupId>com.andre601</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>3.3.0_0</version>
  </dependency>
</dependencies>v3.2.1: Added sites glennbotlist.xyz and cloud-botlist.xyz
Sites added:
Installation
Gradle
Use this in your build.gradle
repositories{
    jcenter()
}
dependencies{
    compile group: 'com.andre601', name: 'JavaBotBlockAPI', version: '3.2.1'
}Maven
Use this in your pom.xml
<dependencies>
  <dependency>
    <groupId>com.andre601</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>3.2.1</version>
  </dependency>
</dependencies>v3.2.0: Added @DeprecatedSince and @ReplacedWith annotations
This update introduces new annotations used.
- @DeprecatedSinceinforms about since what version a method or field is deprecated.
- @ReplacedWithgives info about what method/field now should be used instead.
Installation
Gradle
Use this in your build.gradle
repositories{
    jcenter()
}
dependencies{
    compile group: 'com.andre601', name: 'JavaBotBlockAPI', version: '3.2.0'
}Maven
Use this in your pom.xml
<dependencies>
  <dependency>
    <groupId>com.andre601</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>3.2.0</version>
  </dependency>
</dependencies>v3.1.0: Updated to gradle 5.5
This update changed the Gradle version to 5.5
Dependencies were also updated.
Installation
Gradle
Use this in your build.gradle
repositories{
    jcenter()
}
dependencies{
    compile group: 'com.andre601', name: 'JavaBotBlockAPI', version: '3.1.0'
}Maven
Use this in your pom.xml
<dependencies>
  <dependency>
    <groupId>com.andre601</groupId>
    <artifactId>JavaBotBlockAPI</artifactId>
    <version>3.1.0</version>
  </dependency>
</dependencies>