version 2.24

This commit is contained in:
Robinson 2024-01-17 12:30:51 +01:00
parent d5f856c7a1
commit 5785c9e728
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
3 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>NetworkUtils</artifactId> <artifactId>NetworkUtils</artifactId>
<version>2.23</version> <version>2.24</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -30,7 +30,7 @@ Gradle Info
``` ```
dependencies { dependencies {
... ...
implementation("com.dorkbox:NetworkUtils:2.23") implementation("com.dorkbox:NetworkUtils:2.24")
} }
``` ```

View File

@ -41,7 +41,7 @@ object Extras {
// set for the project // set for the project
const val description = "Utilities for managing network configurations, IP/MAC address conversion, and ping (via OS native commands)" const val description = "Utilities for managing network configurations, IP/MAC address conversion, and ping (via OS native commands)"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "2.23" const val version = "2.24"
// set as project.ext // set as project.ext
const val name = "NetworkUtils" const val name = "NetworkUtils"

View File

@ -30,7 +30,7 @@ internal object Common {
/** /**
* Gets the version number. * Gets the version number.
*/ */
const val version = "2.23" const val version = "2.24"
val OS_LINUX: Boolean val OS_LINUX: Boolean
val OS_WINDOWS: Boolean val OS_WINDOWS: Boolean