diff --git a/Makefile b/Makefile index 8a1e97430..224635c09 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ TOOL_NAME = swaggen -VERSION = 3.0.1 +VERSION = 3.0.2 PREFIX = /usr/local INSTALL_PATH = $(PREFIX)/bin/$(TOOL_NAME) diff --git a/Sources/SwagGen/main.swift b/Sources/SwagGen/main.swift index 7ce6dd57b..ce53c9d66 100644 --- a/Sources/SwagGen/main.swift +++ b/Sources/SwagGen/main.swift @@ -3,7 +3,7 @@ import PathKit import SwagGenKit import SwiftCLI -let version = "3.0.1" +let version = "3.0.2" let generateCommand = GenerateCommand() let cli = CLI(name: "swaggen", version: version, description: "Swagger code generator", commands: [generateCommand]) cli.goAndExit()