21 lines
646 B
Plaintext
21 lines
646 B
Plaintext
|
|
# KCL Version configuration for radicle taskserv
|
||
|
|
# Uses proper import from centralized schema definitions
|
||
|
|
|
||
|
|
import taskservs.version as schema
|
||
|
|
|
||
|
|
# Radicle (decentralized git) taskserv configuration
|
||
|
|
_version = schema.TaskservVersion {
|
||
|
|
name = "radicle"
|
||
|
|
version = schema.Version {
|
||
|
|
current = "1.0.0"
|
||
|
|
source = "https://github.com/radicle-dev/radicle/releases"
|
||
|
|
tags = "https://github.com/radicle-dev/radicle/tags"
|
||
|
|
site = "https://radicle.xyz"
|
||
|
|
check_latest = True # Can auto-update for development tools
|
||
|
|
grace_period = 86400
|
||
|
|
}
|
||
|
|
dependencies = []
|
||
|
|
}
|
||
|
|
|
||
|
|
# Output for dynamic cache system
|
||
|
|
_version
|