From d7634778461b60e97c34d6482b79b1afc0c7e141 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Giovanni=20Jules?= Date: Sat, 14 May 2022 22:40:35 +0400 Subject: [PATCH] chore: bump version to `v0.1.2` --- 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 962284f..6895232 100644 --- a/docs/docs.go +++ b/docs/docs.go @@ -365,7 +365,7 @@ const docTemplate = `{ // SwaggerInfo holds exported Swagger Info so clients can modify it var SwaggerInfo = &swag.Spec{ - Version: "v0.1.1", + Version: "v0.1.2", Host: "", BasePath: "", Schemes: []string{}, diff --git a/docs/swagger.json b/docs/swagger.json index c2f2a6a..274b783 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.1" + "version": "v0.1.2" }, "paths": { "/": { diff --git a/docs/swagger.yaml b/docs/swagger.yaml index c26dd9f..a53b96f 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.1 + version: v0.1.2 paths: /: get: diff --git a/main.go b/main.go index cdbab51..eaf542d 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( ) // @title Deckr -// @version v0.1.1 +// @version v0.1.2 // @description A REST API for playing with a deck of cards. // @contact.name Michaƫl Giovanni Jules