diff --git a/README.md b/README.md index 756dec8..c51be60 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Maven Info com.dorkbox NetworkUtils - 2.13 + 2.14 ``` @@ -30,7 +30,7 @@ Gradle Info ``` dependencies { ... - implementation("com.dorkbox:NetworkUtils:2.13") + implementation("com.dorkbox:NetworkUtils:2.14") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 854df09..7fe4172 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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.13" + const val version = "2.14" // set as project.ext const val name = "NetworkUtils" diff --git a/src/dorkbox/netUtil/Common.kt b/src/dorkbox/netUtil/Common.kt index e161055..772698b 100644 --- a/src/dorkbox/netUtil/Common.kt +++ b/src/dorkbox/netUtil/Common.kt @@ -30,7 +30,7 @@ internal object Common { /** * Gets the version number. */ - const val version = "2.13" + const val version = "2.14" val OS_LINUX: Boolean val OS_WINDOWS: Boolean