mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-09-09 10:19:39 +02:00
Bump sop-java to 14.0.0-SNAPSHOT
This commit is contained in:
parent
77f237908d
commit
b485c9c1d6
4 changed files with 7 additions and 4 deletions
|
@ -68,7 +68,7 @@ class SOPImpl(
|
|||
|
||||
override fun updateKey(): UpdateKey = UpdateKeyImpl(api)
|
||||
|
||||
override fun validateUserId(): ValidateUserId = ValidateUserIdImpl(api)
|
||||
override fun validateUserId(): ValidateUserId = sopv.validateUserId()!!
|
||||
|
||||
override fun version(): Version = sopv.version()!!
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@ import org.pgpainless.util.ArmoredOutputStreamFactory
|
|||
import sop.SOPV
|
||||
import sop.operation.DetachedVerify
|
||||
import sop.operation.InlineVerify
|
||||
import sop.operation.ValidateUserId
|
||||
import sop.operation.Version
|
||||
|
||||
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 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 {
|
||||
|
||||
companion object {
|
||||
const val SOP_VERSION = 11
|
||||
const val SOPV_VERSION = "1.0"
|
||||
const val SOP_VERSION = 14
|
||||
const val SOPV_VERSION = "1.2"
|
||||
}
|
||||
|
||||
override fun getBackendVersion(): String = "PGPainless ${getVersion()}"
|
||||
|
|
|
@ -13,6 +13,6 @@ allprojects {
|
|||
logbackVersion = '1.5.13'
|
||||
mockitoVersion = '4.5.1'
|
||||
slf4jVersion = '1.7.36'
|
||||
sopJavaVersion = '11.0.0-SNAPSHOT'
|
||||
sopJavaVersion = '14.0.0-SNAPSHOT'
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue