Version 2.12

connection_type_change Version_2.12
Robinson 2022-05-06 00:53:45 +02:00
parent 10e1efa79e
commit be9e5d95ac
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>
<groupId>com.dorkbox</groupId>
<artifactId>NetworkUtils</artifactId>
<version>2.11</version>
<version>2.12</version>
</dependency>
</dependencies>
```
@ -30,7 +30,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:NetworkUtils:2.11")
implementation("com.dorkbox:NetworkUtils:2.12")
}
```

View File

@ -39,7 +39,7 @@ object Extras {
// set for the project
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 version = "2.11"
const val version = "2.12"
// set as project.ext
const val name = "NetworkUtils"

View File

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