Skip to content

4.2.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 18 Jul 13:15
a2279d0

Hey there 👋,

the new version 4.2.0 is finally out!

Thank you for the interest in chiara. You can download the newest version below.

If you want to support the development of chiara and many other awesome pieces
of software you can consider sponsoring us.

Usage

You can use chiara in your project easily with Maven or Gradle, see examples below:

Gradle

Gradle repositories

repositories {
  maven {
    name = "mysteryworlds-chiara-github-package-registry"
    description = "Mysteryworlds Chiara GitHub Package Registry"
    url = "https://maven.pkg.github.com/mysteryworlds/chiara/"
    credentials {
      username = project.findProperty("gpr.user") ?: System.getenv("GITHUB_ACTOR")
      password = project.findProperty("gpr.key") ?: System.getenv("GITHUB_TOKEN")
    }
  }
}

Gradle dependencies

dependencies {
  implementation 'com.mysteryworlds:chiara-bukkit:4.2.0'
}

Maven

Maven repositories

<repositories>
    <repository>
        <id>mysteryworlds-chiara-github-package-registry</id>
        <name>Mysteryworlds Chiara GitHub Package Registry</name>
        <url>https://maven.pkg.github.com/mysteryworlds/chiara/</url>
    </repository>
</repositories>

Maven dependencies

<dependency>
  <groupId>com.mysteryworlds</groupId>
  <artifactId>chiara-bukkit</artifactId>
  <version>4.2.0</version>
</dependency>

Things that changed since last release

  • 60d3e74 - Add codeql analysis
  • cbc67d9 - Add codeql to build status table
  • c86e032 - Add gpr publication and publish on every created release
  • ea0eec8 - Add gradle publish to build status table
  • 05553e5 - Add maven and gradle examples in release template
  • a2279d0 - Bump version