plugin-utilities v1.0.0-beta.2
Pre-release
Pre-release
·
7 commits
to main
since this release
A new version of plugin-utilities is ready. Grab your own via JitPack:
Maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.CosimoTiger</groupId>
<artifactId>plugin-utilities</artifactId>
<version>1.0.0-beta.2</version>
</dependency>Gradle
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.CosimoTiger:plugin-utilities:1.0.0-beta.2'
}Changelog
What's Changed
🛠 Breaking changes
- New menu utilities, simplified and generalized menu API by @CosimoTiger in #26
🎉 New features
- feat(menus): MenuManager singleton for new AbstractMenu open methods by @CosimoTiger in #21
- Cooldowns: add missing docs, implement min-zero time difference, improve tests by @CosimoTiger in #30
✨ Miscellaneous
- Bump the version-updates group across 1 directory with 5 updates by @dependabot in #23
- Bump the version-updates group with 2 updates by @dependabot in #27
- Optimize ItemBuilder by externalizing ItemMeta by @CosimoTiger in #28
- Improve and update the README.md by @CosimoTiger in #29
Full Changelog: 1.0.0-alpha.2...1.0.0-beta.2