Skip to content
This repository has been archived by the owner on Jun 11, 2018. It is now read-only.

Commit

Permalink
1.5.0 (#22)
Browse files Browse the repository at this point in the history
Release Candidate 1.5.0 - for Swift 2.3
  • Loading branch information
danthorpe authored Sep 1, 2016
1 parent 6d74e34 commit 1a74093
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .ci/buildkite/pipeline.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ steps:
command: .ci/scripts/lint
agents:
iOS-Simulator: false
swift: "$BUILDKITE_AGENT_META_DATA_SWIFT"
xcode: "$BUILDKITE_AGENT_META_DATA_XCODE"

-
name: "Mac"
command: .ci/scripts/test-osx
agents:
iOS-Simulator: false
swift: "$BUILDKITE_AGENT_META_DATA_SWIFT"
xcode: "$BUILDKITE_AGENT_META_DATA_XCODE"
-
name: "iOS"
command: .ci/scripts/test-ios
agents:
iOS-Simulator: true
swift: "$BUILDKITE_AGENT_META_DATA_SWIFT"
xcode: "$BUILDKITE_AGENT_META_DATA_XCODE"
env:
FL_SLATHER_BUILDKITE_ENABLED: true
FL_SLATHER_COVERALLS_ENABLED: true
2 changes: 1 addition & 1 deletion .ci/buildkite/upload
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
set -eu

# Makes sure all the steps run on this same agent
sed "s/\$BUILDKITE_AGENT_META_DATA_SWIFT/$BUILDKITE_AGENT_META_DATA_SWIFT/" .ci/buildkite/pipeline.template.yml
sed "s/\$BUILDKITE_AGENT_META_DATA_XCODE/$BUILDKITE_AGENT_META_DATA_XCODE/" .ci/buildkite/pipeline.template.yml
2 changes: 1 addition & 1 deletion .fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ platform :ios do
scan(
project: "ValueCoding.xcodeproj",
scheme: "ValueCoding",
destination: "platform=iOS Simulator,OS=9.3,name=iPhone 6s",
destination: "platform=iOS Simulator,OS=10.0,name=iPhone 5s",
code_coverage: true
)

Expand Down
4 changes: 2 additions & 2 deletions .jazzy.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
"author_url": "http://danthorpe.me",
"github_url": "https://github.com/danthorpe/ValueCoding",
"module": "ValueCoding",
"module_version": "1.4.0",
"module_version": "1.5.0",
"readme": "README.md",
"swift_version": "2.2",
"swift_version": "2.3",
"xcodebuild_arguments": [
"-project", "ValueCoding.xcodeproj",
"-scheme", "ValueCoding"
Expand Down
2 changes: 1 addition & 1 deletion Supporting Files/ValueCoding.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ APPLICATION_EXTENSION_API_ONLY_xctest = NO
APPLICATION_EXTENSION_API_ONLY = $(APPLICATION_EXTENSION_API_ONLY_$(WRAPPER_EXTENSION))

// Build Settings
SWIFT_VERSION = 2.2
SWIFT_VERSION = 2.3
SUPPORTED_PLATFORMS = macosx iphoneos appletvos watchos appletvsimulator iphonesimulator watchsimulator
CLANG_ENABLE_CODE_COVERAGE = YES

Expand Down
2 changes: 1 addition & 1 deletion Supporting Files/Version.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VALUECODING_VERSION = 1.4.0
VALUECODING_VERSION = 1.5.0
4 changes: 2 additions & 2 deletions ValueCoding.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "ValueCoding"
s.version = "1.4.0"
s.version = "1.5.0"
s.summary = "Swift protocols for encoding/decoding value types."
s.description = <<-DESC
Expand All @@ -19,7 +19,7 @@ Pod::Spec.new do |s|
s.author = { "Daniel Thorpe" => "@danthorpe" }
s.source = { :git => "https://github.com/danthorpe/ValueCoding.git", :tag => s.version.to_s }
s.module_name = 'ValueCoding'
s.documentation_url = 'http://docs.danthorpe.me/valuecoding/1.4.0/index.html'
s.documentation_url = 'http://docs.danthorpe.me/valuecoding/1.5.0/index.html'
s.social_media_url = 'https://twitter.com/danthorpe'
s.requires_arc = true
s.ios.deployment_target = '8.0'
Expand Down
4 changes: 0 additions & 4 deletions ValueCoding.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,6 @@
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 3.0;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
Expand Down Expand Up @@ -354,7 +353,6 @@
SDKROOT = macosx;
SKIP_INSTALL = YES;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 3.0;
VERSIONING_SYSTEM = "apple-generic";
VERSION_INFO_PREFIX = "";
};
Expand Down Expand Up @@ -406,7 +404,6 @@
SDKROOT = macosx;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
SWIFT_VERSION = 3.0;
};
name = Debug;
};
Expand Down Expand Up @@ -449,7 +446,6 @@
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = macosx;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_VERSION = 3.0;
};
name = Release;
};
Expand Down

0 comments on commit 1a74093

Please sign in to comment.