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:
parent
c9b562fde5
commit
74661f17ed
4 changed files with 7 additions and 5 deletions
|
@ -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()!!
|
||||||
}
|
}
|
||||||
|
|
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
|
@ -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()}"
|
||||||
|
|
|
@ -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'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue