Compare commits

...

2 Commits

Author SHA1 Message Date
Robinson 073c52fcba
updated version 2023-01-26 19:14:43 +01:00
Robinson 14b7ba1301
proper module info 2023-01-26 19:14:30 +01:00
4 changed files with 5 additions and 5 deletions

View File

@ -311,7 +311,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Version</artifactId>
<version>3.0</version>
<version>3.1</version>
</dependency>
</dependencies>
```
@ -321,7 +321,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:Version:3.0")
implementation("com.dorkbox:Version:3.1")
}
```

View File

@ -34,7 +34,7 @@ object Extras {
const val description = "Java Semantic Versioning with exceptions."
const val group = "com.dorkbox"
const val version = "3.0"
const val version = "3.1"
// set as project.ext
const val name = "Version"

View File

@ -217,7 +217,7 @@ internal constructor(
/**
* Gets the version number.
*/
const val version = "3.0"
const val version = "3.1"
init {
// Add this project to the updates system, which verifies this class + UUID + version information

View File

@ -1,3 +1,3 @@
module com.dorkbox.version {
module dorkbox.version {
exports dorkbox.version;
}