From 1433e62f51253e44d3dee71d36d05f15ec466f49 Mon Sep 17 00:00:00 2001 From: Rishab Sukumar Date: Fri, 2 Sep 2022 15:04:09 -0700 Subject: [PATCH 1/2] [no-jira] Revert changes to Makefile for universal binary --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 43afdbb..dd28193 100644 --- a/Makefile +++ b/Makefile @@ -3,10 +3,10 @@ bindir = $(prefix)/bin libdir = $(prefix)/lib build: - swift build -c release --disable-sandbox --arch arm64 --arch x86_64 + swift build -c release --disable-sandbox install: build - install ".build/apple/Products/Release/xcparse" "$(bindir)" + install ".build/release/xcparse" "$(bindir)" uninstall: rm -rf "$(bindir)/xcparse" From 32392b16d18dccb3e234762985d7d99f8be6df86 Mon Sep 17 00:00:00 2001 From: Rishab Sukumar Date: Fri, 2 Sep 2022 15:49:33 -0700 Subject: [PATCH 2/2] [no-jira] Update current version to 2.3.1 --- Sources/xcparse/XCPParser.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/xcparse/XCPParser.swift b/Sources/xcparse/XCPParser.swift index 9981566..e9d0fc8 100644 --- a/Sources/xcparse/XCPParser.swift +++ b/Sources/xcparse/XCPParser.swift @@ -12,7 +12,7 @@ import TSCUtility import XCParseCore import Converter -let xcparseCurrentVersion = Version(2, 2, 1) +let xcparseCurrentVersion = Version(2, 3, 1) struct XCResultToolCompatability { var supportsExport: Bool = true