2 Commits

Author SHA1 Message Date
f49e600613 version 1.3.0
All checks were successful
continuous-integration/woodpecker the build was successful
2021-10-31 22:09:12 +01:00
940a30e9aa Merge pull request 'Parse the year of a timetable' (#21) from hannesbraun/TheCitadelofRicks:feature/parse-year into master
All checks were successful
continuous-integration/woodpecker the build was successful
Reviewed-on: #21
2021-10-24 15:00:13 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ plugins {
} }
group 'org.mosad' group 'org.mosad'
version '1.2.8' version '1.3.0'
repositories { repositories {
mavenCentral() mavenCentral()

View File

@ -48,8 +48,8 @@ class APIController {
private val logger: Logger = LoggerFactory.getLogger(APIController::class.java) private val logger: Logger = LoggerFactory.getLogger(APIController::class.java)
companion object { companion object {
const val apiVersion = "1.2.0" const val apiVersion = "1.3.0"
const val softwareVersion = "1.2.8" const val softwareVersion = "1.3.0"
val startTime = System.currentTimeMillis() / 1000 val startTime = System.currentTimeMillis() / 1000
} }