Update to 2.4.0

This commit is contained in:
yonaskolb
2019-03-31 21:59:39 +11:00
parent e6fd3731a2
commit bf4a65bbdc
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
TOOL_NAME = XcodeGen
export EXECUTABLE_NAME = xcodegen
VERSION = 2.3.0
VERSION = 2.4.0
PREFIX = /usr/local
INSTALL_PATH = $(PREFIX)/bin/$(EXECUTABLE_NAME)
@@ -28,8 +28,8 @@ uninstall:
format_code:
swiftformat .
release: format_code
sed -i '' 's|\(let version = try Version("\)\(.*\)\(")\)|\1$(VERSION)\3|' Sources/XcodeGen/main.swift
release:
sed -i '' 's|\(let version = Version("\)\(.*\)\(")\)|\1$(VERSION)\3|' Sources/XcodeGen/main.swift
git add .
git commit -m "Update to $(VERSION)"
+1 -1
View File
@@ -2,6 +2,6 @@ import Foundation
import ProjectSpec
import XcodeGenCLI
let version = Version("2.3.0")
let version = Version("2.4.0")
let cli = XcodeGenCLI(version: version)
cli.execute()