From 942c088360f74de8fba060749981329c3759a4f4 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Thu, 16 Dec 2021 10:52:45 -0500 Subject: [PATCH] Updates... Pt 2 --- .build.yml | 2 +- VERSION | 2 +- src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.build.yml b/.build.yml index aa22322..9f8e59f 100644 --- a/.build.yml +++ b/.build.yml @@ -1,6 +1,6 @@ image: alpine/edge packages: - - openjdk11 + - openjdk17 - rsync secrets: - 2c7f4f4a-a9c9-47e2-a432-b8a060d01381 diff --git a/VERSION b/VERSION index 845639e..0ea3a94 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.4 +0.2.0 diff --git a/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt b/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt index a0d4bdb..d55a1be 100644 --- a/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt +++ b/src/main/kotlin/com/anthonycicchetti/slackbot/Main.kt @@ -127,7 +127,7 @@ private fun sendResponse(ctx: Context, respObj: RespObj) { private fun createOpenApiOptions(): OpenApiOptions { val o = { 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/")) }