From 0d7576ea59e80590b226adeb92824f421dfd77ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Giovanni=20Jules?= Date: Sun, 15 May 2022 00:41:56 +0400 Subject: [PATCH] chore: bump version to `v0.1.3` --- 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 6895232..fd9bbd9 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.2", + Version: "v0.1.3", Host: "", BasePath: "", Schemes: []string{}, diff --git a/docs/swagger.json b/docs/swagger.json index 274b783..7663e73 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.2" + "version": "v0.1.3" }, "paths": { "/": { diff --git a/docs/swagger.yaml b/docs/swagger.yaml index a53b96f..4524fd4 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.2 + version: v0.1.3 paths: /: get: diff --git a/main.go b/main.go index eaf542d..a21e4cb 100644 --- a/main.go +++ b/main.go @@ -9,7 +9,7 @@ import ( ) // @title Deckr -// @version v0.1.2 +// @version v0.1.3 // @description A REST API for playing with a deck of cards. // @contact.name Michaƫl Giovanni Jules