Updated version from 1.1 to 1.2

This commit is contained in:
nathan 2020-01-06 15:00:33 +01:00
parent 0649eeadd3
commit 729ddf62ac
3 changed files with 4 additions and 4 deletions

View File

@ -60,7 +60,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>KloudflareAPI</artifactId> <artifactId>KloudflareAPI</artifactId>
<version>1.1</version> <version>1.2</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -70,7 +70,7 @@ Gradle Info
```` ````
dependencies { dependencies {
... ...
compile 'com.dorkbox:KloudflareAPI:1.1' compile 'com.dorkbox:KloudflareAPI:1.2'
} }
```` ````

View File

@ -25,7 +25,7 @@ object Extras {
// set for the project // set for the project
const val description = "Cloudflare API v4 for Kotlin" const val description = "Cloudflare API v4 for Kotlin"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "1.1" const val version = "1.2"
// set as project.ext // set as project.ext
const val name = "KloudflareAPI" const val name = "KloudflareAPI"

View File

@ -60,7 +60,7 @@ class Kloudflare(private val xAuthEmail: String, private val xAuthKey: String) {
* Gets the version number. * Gets the version number.
*/ */
fun getVersion(): String { fun getVersion(): String {
return "1.1" return "1.2"
} }
} }