Skip to content

Commit

Permalink
Update to 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yonaskolb committed Mar 31, 2019
1 parent e6fd373 commit bf4a65b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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)"
Expand Down
2 changes: 1 addition & 1 deletion Sources/XcodeGen/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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()

0 comments on commit bf4a65b

Please sign in to comment.