From 63830003b01e74fbd521c2f0be82a6df03795d24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Giovanni=20Jules?= Date: Fri, 13 May 2022 16:39:25 +0400 Subject: [PATCH] chore: bump version to `v0.1.1` --- docs/docs.go | 2 +- docs/swagger.json | 2 +- docs/swagger.yaml | 2 +- main.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs.go b/docs/docs.go index c210c61..372795a 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -317,7 +317,7 @@ const docTemplate = `{ // SwaggerInfo holds exported Swagger Info so clients can modify it var SwaggerInfo = &swag.Spec{ - Version: "v0.1.0", + Version: "v0.1.1", Host: "", BasePath: "", Schemes: []string{}, diff --git a/docs/swagger.json b/docs/swagger.json index d3790f2..147d71b 100644 --- a/docs/swagger.json +++ b/docs/swagger.json @@ -12,7 +12,7 @@ "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.html" }, - "version": "v0.1.0" + "version": "v0.1.1" }, "paths": { "/": { diff --git a/docs/swagger.yaml b/docs/swagger.yaml index a6ba221..e80e06f 100644 --- a/docs/swagger.yaml +++ b/docs/swagger.yaml @@ -77,7 +77,7 @@ info: name: Apache 2.0 url: http://www.apache.org/licenses/LICENSE-2.0.html title: Deckr - version: v0.1.0 + version: v0.1.1 paths: /: get: diff --git a/main.go b/main.go index 4c3b4e6..cdbab51 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( ) // @title Deckr -// @version v0.1.0 +// @version v0.1.1 // @description A REST API for playing with a deck of cards. // @contact.name Michaƫl Giovanni Jules