From 1134f9eee46b7fcd3fb35d443499d38e88d266fa Mon Sep 17 00:00:00 2001 From: Geoffrey Foster Date: Thu, 29 Nov 2018 10:38:51 -0500 Subject: [PATCH] bump to version 0.1.1 --- Makefile | 2 +- Sources/stringray/main.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3bebe8f..331224d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ TOOL_NAME = stringray -VERSION = 0.1.0 +VERSION = 0.1.1 REPO = https://github.com/g-Off/$(TOOL_NAME) RELEASE_TAR = $(REPO)/archive/$(VERSION).tar.gz diff --git a/Sources/stringray/main.swift b/Sources/stringray/main.swift index ca8f794..31e6b48 100644 --- a/Sources/stringray/main.swift +++ b/Sources/stringray/main.swift @@ -9,7 +9,7 @@ import Foundation import Utility -var registry = CommandRegistry(usage: " ", overview: "", version: Version(0, 1, 0)) +var registry = CommandRegistry(usage: " ", overview: "", version: Version(0, 1, 1)) registry.register(command: MoveCommand.self) registry.register(command: SortCommand.self) registry.register(command: RenameCommand.self)