Skip to content

Releases: mysteryworlds/chiara

4.2.0

18 Jul 13:15
a2279d0
Compare
Choose a tag to compare

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

4.1.0

18 Jul 12:41
badf41e
Compare
Choose a tag to compare

Hey there 👋,

the new version 4.1.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.

Things that changed since last release

  • b28fe42 - Checkout repo for release job
  • e205b3b - Use correct url for upload
  • ac3f26e - Replace jackson with plain old snakeyaml
  • 22f3c47 - Bump version
  • df001aa - Fix test dependencies on vault and spigot
  • 246310c - Merge branch 'master' of github.com:FelixKlauke/chiara
  • 04593ee - Use more convenient artifact path
  • 18858d3 - Properly greet downloaders
  • badf41e - Use release version instead of changelof for release version

4.0.0

18 Jul 11:13
704176a
Compare
Choose a tag to compare

Things that changed since last release

  • aa2927c - Save default resources
  • d49c515 - Start loading after dependencies are setup
  • c4942b8 - Add proper constructor for session trigger
  • 8911363 - Make session trigger available for tests
  • 2f0c909 - Add default constructor for user config
  • 8635209 - Add default map for users when none were read
  • 97e4fbd - Add default group that will be inserted on user creation
  • 4ffa4b2 - Recalculate session permissions on creation and add dummy command
  • 3f99a67 - Update readme
  • 0bbfbfe - Mock world for trigger test
  • d91e9c5 - Add group meta data and chat support. Resolves #53 (#55)
  • 6782129 - Refine project structure
  • 49543f2 - Change package for mysteryworlds
  • 0d56226 - Add gradle workflow
  • 7db8f0b - Update test frameworks
  • 4764fcf - Add CI credentials
  • acb187b - Add build status
  • d087b46 - Prepare release
  • f54a608 - Use gradle wrapper
  • 342a89a - Remove gradle publish workflow
  • 57cef99 - Add release workflow
  • be55927 - Add default for release version
  • 704176a - Configure release inputs
  • b28fe42 - Checkout repo for release job
  • e205b3b - Use correct url for upload

Pre Release: Chat Support

11 Apr 09:12
d91e9c5
Compare
Choose a tag to compare
Pre-release
3.1.0-SNAPSHOT

Add group meta data and chat support. Resolves #53 (#55)

Recode Release: Initial Release

04 Apr 17:31
a5bb8b4
Compare
Choose a tag to compare

Completely recoded chiara.

v1.0.0

23 Jun 09:49
9496fd3
Compare
Choose a tag to compare
v1.0.0 Pre-release
Pre-release
Reformat some code.