Skip to content

Commit

Permalink
Merge pull request #8 from jamf/epic/AEG-1722-Update-minimum-target-S…
Browse files Browse the repository at this point in the history
…DK-to-10.13

[AEG-1722] Update minimum target sdk to 10.13
  • Loading branch information
mm512 authored Jul 1, 2021
2 parents fee8513 + 07e69fd commit 8bd63b5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## 2.0.0 - 2021-07-01

### Changed
- Breaking: added the output of the command to Shell's exception exitedWithNonZeroStatus error to better conform to objc interop and NSError

- Updated minimum deployment target to macOS 10.13.

## 1.1.0 - 2020-05-15

Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PackageDescription

let package = Package(
name: "Subprocess",
platforms: [ .macOS(.v10_12) ],
platforms: [ .macOS(.v10_13) ],
products: [
.library(
name: "Subprocess",
Expand Down
4 changes: 2 additions & 2 deletions Subprocess.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/jamf/Subprocess'
s.authors = { 'Cyrus Ingraham' => 'cyrus.ingraham@jamf.com' }
s.source = { :git => "https://github.com/jamf/Subprocess.git", :tag => s.version.to_s }
s.platform = :osx, '10.12'
s.osx.deployment_target = '10.12'
s.platform = :osx, '10.13'
s.osx.deployment_target = '10.13'
s.swift_version = '5.1'
s.default_subspec = 'Core'

Expand Down
4 changes: 2 additions & 2 deletions Subprocess.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -582,7 +582,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.12;
MACOSX_DEPLOYMENT_TARGET = 10.13;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = macosx;
Expand Down

0 comments on commit 8bd63b5

Please sign in to comment.