Skip to content

1.0.0

Compare
Choose a tag to compare
@Lyzev Lyzev released this 29 Oct 19:36
· 1 commit to master since this release
59cabc5

Settings - 1.0.0 Bugfix Release

We are pleased to announce the release of Settings 1.0.0, which includes an important bugfix. This release ensures the proper accessibility of the function, resolving the issue that affected certain use cases.

Bugfix

  • Fixed a bug where a use function did not work. The use function now works as intended.

Version 1.0.0 - Release Notes

  • Bugfix release to address the usage issue.
  • The usage is now working as intended.

Full Changelog: v0.0.3...1.0.0

How to Upgrade

To benefit from the bugfix and improvements in Settings 1.0.0, update your project's dependency to the latest version. If you are using a dependency management system like Gradle or Maven, modify your build file accordingly:

Gradle KTS
repositories {
    maven("https://jitpack.io")
}

dependencies {
    implementation("com.github.Lyzev:Settings:1.0.0")
}
Gradle Groovy
repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.Lyzev:Settings:1.0.0'
}
Maven
<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

<dependencies>
<dependency>
    <groupId>com.github.Lyzev</groupId>
    <artifactId>Settings</artifactId>
    <version>1.0.0</version>
</dependency>
</dependencies>
Raw Jar
  1. Go to the release page.
  2. Download Settings-1.0.0.jar.
  3. Add the jar to your classpath.

Contribution and Feedback

We value your feedback and contributions! If you encounter any issues or have suggestions for improving Settings, please don't hesitate to create an issue or submit a pull request.

Thank you for using Settings, and happy coding!