1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2025-09-09 18:29:39 +02:00

Bump sop-java to 14.0.0-SNAPSHOT

This commit is contained in:
Paul Schaub 2025-06-17 11:48:39 +02:00
parent a49df00a9e
commit 15d50bb4af
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
4 changed files with 7 additions and 5 deletions

View file

@ -68,7 +68,7 @@ class SOPImpl(
override fun updateKey(): UpdateKey = UpdateKeyImpl(api) override fun updateKey(): UpdateKey = UpdateKeyImpl(api)
override fun validateUserId(): ValidateUserId = ValidateUserIdImpl(api) override fun validateUserId(): ValidateUserId = sopv.validateUserId()!!
override fun version(): Version = sopv.version()!! override fun version(): Version = sopv.version()!!
} }

View file

@ -9,6 +9,7 @@ import org.pgpainless.util.ArmoredOutputStreamFactory
import sop.SOPV import sop.SOPV
import sop.operation.DetachedVerify import sop.operation.DetachedVerify
import sop.operation.InlineVerify import sop.operation.InlineVerify
import sop.operation.ValidateUserId
import sop.operation.Version import sop.operation.Version
class SOPVImpl(private val api: PGPainless) : SOPV { class SOPVImpl(private val api: PGPainless) : SOPV {
@ -22,4 +23,6 @@ class SOPVImpl(private val api: PGPainless) : SOPV {
override fun inlineVerify(): InlineVerify = InlineVerifyImpl(api) override fun inlineVerify(): InlineVerify = InlineVerifyImpl(api)
override fun version(): Version = VersionImpl(api) override fun version(): Version = VersionImpl(api)
override fun validateUserId(): ValidateUserId = ValidateUserIdImpl(api)
} }

View file

@ -16,8 +16,8 @@ import sop.operation.Version
class VersionImpl(private val api: PGPainless) : Version { class VersionImpl(private val api: PGPainless) : Version {
companion object { companion object {
const val SOP_VERSION = 11 const val SOP_VERSION = 14
const val SOPV_VERSION = "1.0" const val SOPV_VERSION = "1.2"
} }
override fun getBackendVersion(): String = "PGPainless ${getVersion()}" override fun getBackendVersion(): String = "PGPainless ${getVersion()}"

View file

@ -13,7 +13,6 @@ allprojects {
logbackVersion = '1.5.13' logbackVersion = '1.5.13'
mockitoVersion = '4.5.1' mockitoVersion = '4.5.1'
slf4jVersion = '1.7.36' slf4jVersion = '1.7.36'
sopJavaVersion = '10.1.1' sopJavaVersion = '14.0.0-SNAPSHOT'
sopJavaVersion = '11.0.0-SNAPSHOT'
} }
} }