diff --git a/README.md b/README.md index e1047ef..0e8d645 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Maven Info com.dorkbox NetworkUtils - 2.21 + 2.22 ``` @@ -30,7 +30,7 @@ Gradle Info ``` dependencies { ... - implementation("com.dorkbox:NetworkUtils:2.21") + implementation("com.dorkbox:NetworkUtils:2.22") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index 80e1a30..3ceb08f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ /* - * Copyright 2021 dorkbox, llc + * Copyright 2023 dorkbox, llc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ * limitations under the License. */ -import java.time.Instant +import de.undercouch.gradle.tasks.download.Download /////////////////////////////// ////// PUBLISH TO SONATYPE / MAVEN CENTRAL @@ -41,7 +41,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.21" + const val version = "2.22" // set as project.ext const val name = "NetworkUtils" diff --git a/src/dorkbox/netUtil/Common.kt b/src/dorkbox/netUtil/Common.kt index db7f609..1b951bd 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.21" + const val version = "2.22" val OS_LINUX: Boolean val OS_WINDOWS: Boolean