Skip to content

Releases: botblock/JavaBotBlockAPI

v4.0.3: fixed version

03 Jan 20:30
Compare
Choose a tag to compare

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]

03 Jan 20:14
Compare
Choose a tag to compare

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

03 Jan 19:37
Compare
Choose a tag to compare

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

02 Jan 12:08
Compare
Choose a tag to compare

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

02 Jan 10:58
c284f59
Compare
Choose a tag to compare

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

02 Jan 10:49
599d89d
Compare
Choose a tag to compare

Added discord notification to the GH actions task. This can be seen as first test.

Dependencies updated:

  • JDA:
    • 4.1.0_89 to 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

31 Dec 15:57
Compare
Choose a tag to compare

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

30 Dec 22:08
Compare
Choose a tag to compare

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

24 Dec 21:21
Compare
Choose a tag to compare

This update introduces new annotations used.

  • @DeprecatedSince informs about since what version a method or field is deprecated.
  • @ReplacedWith gives 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

23 Dec 12:39
Compare
Choose a tag to compare

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>