updated version

master
Robinson 2023-01-22 21:37:08 +01:00
parent 29f77e5713
commit 9aa1594330
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
3 changed files with 4 additions and 4 deletions

View File

@ -324,7 +324,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Executor</artifactId>
<version>3.11</version>
<version>3.12</version>
</dependency>
</dependencies>
```
@ -334,7 +334,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:Executor:3.11")
implementation("com.dorkbox:Executor:3.12")
}
```

View File

@ -38,7 +38,7 @@ object Extras {
const val description = "Shell, JVM, and SSH command execution on Linux, MacOS, or Windows for Java 8+"
const val group = "com.dorkbox"
const val id = "Executor"
const val version = "3.11"
const val version = "3.12"
const val vendor = "Dorkbox LLC"
const val vendorUrl = "https://dorkbox.com"

View File

@ -102,7 +102,7 @@ open class Executor {
/**
* Gets the version number.
*/
const val version = "3.11"
const val version = "3.12"
val log = LoggerFactory.getLogger(Executor::class.java)!!
val IS_OS_WINDOWS: Boolean