Releases: mysteryworlds/chiara
Releases · mysteryworlds/chiara
4.2.0
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
4.1.0
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 jobe205b3b
- Use correct url for uploadac3f26e
- Replace jackson with plain old snakeyaml22f3c47
- Bump versiondf001aa
- Fix test dependencies on vault and spigot246310c
- Merge branch 'master' of github.com:FelixKlauke/chiara04593ee
- Use more convenient artifact path18858d3
- Properly greet downloadersbadf41e
- Use release version instead of changelof for release version
4.0.0
Things that changed since last release
aa2927c
- Save default resourcesd49c515
- Start loading after dependencies are setupc4942b8
- Add proper constructor for session trigger8911363
- Make session trigger available for tests2f0c909
- Add default constructor for user config8635209
- Add default map for users when none were read97e4fbd
- Add default group that will be inserted on user creation4ffa4b2
- Recalculate session permissions on creation and add dummy command3f99a67
- Update readme0bbfbfe
- Mock world for trigger testd91e9c5
- Add group meta data and chat support. Resolves #53 (#55)6782129
- Refine project structure49543f2
- Change package for mysteryworlds0d56226
- Add gradle workflow7db8f0b
- Update test frameworks4764fcf
- Add CI credentialsacb187b
- Add build statusd087b46
- Prepare releasef54a608
- Use gradle wrapper342a89a
- Remove gradle publish workflow57cef99
- Add release workflowbe55927
- Add default for release version704176a
- Configure release inputsb28fe42
- Checkout repo for release jobe205b3b
- Use correct url for upload
Pre Release: Chat Support
3.1.0-SNAPSHOT Add group meta data and chat support. Resolves #53 (#55)
Recode Release: Initial Release
Completely recoded chiara.
v1.0.0
Reformat some code.