Skip to content

Releases: botblock/JavaBotBlockAPI

v4.0.3: fixed version

Choose a tag to compare

@Andre601 Andre601 released this 03 Jan 20:30

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]

Choose a tag to compare

@Andre601 Andre601 released this 03 Jan 20:14

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

Choose a tag to compare

@Andre601 Andre601 released this 03 Jan 19:37

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

Choose a tag to compare

@Andre601 Andre601 released this 02 Jan 12:08

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

Choose a tag to compare

@Andre601 Andre601 released this 02 Jan 10:58
c284f59

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

Choose a tag to compare

@Andre601 Andre601 released this 02 Jan 10:49
599d89d

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

Choose a tag to compare

@Andre601 Andre601 released this 31 Dec 15:57

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

Choose a tag to compare

@Andre601 Andre601 released this 30 Dec 22:08

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

Choose a tag to compare

@Andre601 Andre601 released this 24 Dec 21:21

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

Choose a tag to compare

@Andre601 Andre601 released this 23 Dec 12:39

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>