Version 2.2

This commit is contained in:
Robinson 2024-04-22 14:02:05 +02:00
parent 343c3aeaff
commit d4e2341158
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
4 changed files with 9 additions and 9 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>2.1</version> <version>2.2</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2023 dorkbox, llc * Copyright 2024 dorkbox, llc
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -33,7 +33,7 @@ plugins {
// There are several issues with KSP. // There are several issues with KSP.
// 1) It runs on every compile (it's not cached) // 1) It runs on every compile (it's not cached)
// 2) It is not possible to (at last I don't know) how to run this via IntelliJ compiles (it's only via Gradle) // 2) It is not possible to (at last I don't know) how to run this via IntelliJ compiles (it's only via Gradle)
id("dev.zacsweers.moshix") version "0.24.0" // id("dev.zacsweers.moshix") version "0.24.0"
kotlin("jvm") version "1.9.0" kotlin("jvm") version "1.9.0"
} }
@ -42,7 +42,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 = "2.1" const val version = "2.2"
// set as project.ext // set as project.ext
const val name = "KloudflareAPI" const val name = "KloudflareAPI"
@ -87,9 +87,9 @@ tasks.jar.get().apply {
dependencies { dependencies {
api(kotlin("reflect")) api(kotlin("reflect"))
val moshiVer = "1.15.0" val moshiVer = "1.15.1"
val okHttpVer = "4.11.0" val okHttpVer = "4.12.0"
val retroVer = "2.9.0" val retroVer = "2.11.0"
api("com.squareup.okhttp3:okhttp:$okHttpVer") api("com.squareup.okhttp3:okhttp:$okHttpVer")
api("com.squareup.okhttp3:logging-interceptor:$okHttpVer") // Log Network Calls api("com.squareup.okhttp3:logging-interceptor:$okHttpVer") // Log Network Calls

View File

@ -15,7 +15,7 @@
# #
# https://github.com/ZacSweers/MoshiX/releases # https://github.com/ZacSweers/MoshiX/releases
moshix.generateProguardRules=false #moshix.generateProguardRules=false
# https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties # https://docs.gradle.org/current/userguide/build_environment.html#sec:gradle_configuration_properties
org.gradle.jvmargs=-Dfile.encoding=UTF-8 org.gradle.jvmargs=-Dfile.encoding=UTF-8

View File

@ -47,7 +47,7 @@ class Kloudflare(private val xAuthEmail: String, private val xAuthKey: String) {
/** /**
* Gets the version number. * Gets the version number.
*/ */
const val version = "2.1" const val version = "2.2"
init { init {
// Add this project to the updates system, which verifies this class + UUID + version information // Add this project to the updates system, which verifies this class + UUID + version information