Updates... Pt 2

This commit is contained in:
Anthony Cicchetti 2021-12-16 10:52:45 -05:00
parent 88930b7690
commit 942c088360
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
image: alpine/edge image: alpine/edge
packages: packages:
- openjdk11 - openjdk17
- rsync - rsync
secrets: secrets:
- 2c7f4f4a-a9c9-47e2-a432-b8a060d01381 - 2c7f4f4a-a9c9-47e2-a432-b8a060d01381

View file

@ -1 +1 @@
0.1.4 0.2.0

View file

@ -127,7 +127,7 @@ private fun sendResponse(ctx: Context, respObj: RespObj) {
private fun createOpenApiOptions(): OpenApiOptions { private fun createOpenApiOptions(): OpenApiOptions {
val o = { val o = {
OpenAPI() OpenAPI()
.info(Info().version("0.1.2").description("Slackbot Open API documentation")) .info(Info().version("0.2.0").description("Slackbot Open API documentation"))
.addServersItem(Server().url("https://acicchetti.dev/")) .addServersItem(Server().url("https://acicchetti.dev/"))
} }