version 4.1

This commit is contained in:
Robinson 2023-08-20 13:36:14 +02:00
parent e811f570e6
commit d2e7bedf9c
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
3 changed files with 9 additions and 9 deletions

View File

@ -85,7 +85,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>Notify</artifactId> <artifactId>Notify</artifactId>
<version>4.0</version> <version>4.1</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -95,7 +95,7 @@ Gradle Info
``` ```
dependencies { dependencies {
... ...
compile "com.dorkbox:Notify:4.0" compile "com.dorkbox:Notify:4.1"
} }
``` ```

View File

@ -27,7 +27,7 @@ gradle.startParameter.warningMode = WarningMode.All
plugins { plugins {
id("com.dorkbox.GradleUtils") version "3.17" id("com.dorkbox.GradleUtils") version "3.17"
id("com.dorkbox.Licensing") version "2.25" id("com.dorkbox.Licensing") version "2.26"
id("com.dorkbox.VersionUpdate") version "2.8" id("com.dorkbox.VersionUpdate") version "2.8"
id("com.dorkbox.GradlePublish") version "1.18" id("com.dorkbox.GradlePublish") version "1.18"
@ -38,7 +38,7 @@ object Extras {
// set for the project // set for the project
const val description = "Linux, MacOS, or Windows (notification/growl/toast/) popups for the desktop for Java 8+" const val description = "Linux, MacOS, or Windows (notification/growl/toast/) popups for the desktop for Java 8+"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "4.0" const val version = "4.1"
// set as project.ext // set as project.ext
const val name = "Notify" const val name = "Notify"
@ -99,11 +99,11 @@ tasks.jar.get().apply {
} }
dependencies { dependencies {
api("com.dorkbox:PropertyLoader:1.2") api("com.dorkbox:PropertyLoader:1.4")
api("com.dorkbox:TweenEngine:9.0") api("com.dorkbox:TweenEngine:9.1")
api("com.dorkbox:SwingActiveRender:1.3") api("com.dorkbox:SwingActiveRender:1.4")
api("com.dorkbox:Updates:1.1") api("com.dorkbox:Updates:1.1")
api("com.dorkbox:Utilities:1.40") api("com.dorkbox:Utilities:1.45")
} }
publishToSonatype { publishToSonatype {

View File

@ -104,7 +104,7 @@ class Notify private constructor() {
/** /**
* Gets the version number. * Gets the version number.
*/ */
const val version = "4.0" const val version = "4.1"
init { init {
// Add this project to the updates system, which verifies this class + UUID + version information // Add this project to the updates system, which verifies this class + UUID + version information