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

Commit

Permalink
2.0.1 (#68)
Browse files Browse the repository at this point in the history
* Updates to Swift 3.0 (#63)

* [swift/3.0]: Gets framework building in Swift 3.0

* [swift/3.0]: Swift 3.0 tests passing

* [swift/3.0]: Gets the podspec validating

* Uses higher version of ValueCoding (#66)

which support Swift 3.0.1

* Sorts out builds for Swift 3 (#67)

* [MNY-67]: Updates Cartfile resolved

* [OPR-67]: Fixes pipeline for iOS queue

* [2.0.1]: Updates the versions
  • Loading branch information
danthorpe authored Dec 12, 2016
1 parent f44c868 commit 03d015a
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .ci/buildkite/pipeline.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ steps:
name: "iOS"
command: "source /usr/local/opt/chruby/share/chruby/chruby.sh && chruby ruby && bundle install --quiet && bundle exec fastlane test_ios"
agents:
iOS-Simulator: true
queue: "iOS-Simulator"
xcode: "$XCODE"
-
name: "tvOS"
command: "source /usr/local/opt/chruby/share/chruby/chruby.sh && chruby ruby && bundle install --quiet && bundle exec fastlane test_tvos"
agents:
iOS-Simulator: true
queue: "iOS-Simulator"
xcode: "$XCODE"
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "danthorpe/ValueCoding" "2.0.0"
github "danthorpe/ValueCoding" "2.1.0"
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "danthorpe/ValueCoding" "2.0.0"
github "danthorpe/ValueCoding" "2.1.0"
2 changes: 1 addition & 1 deletion Money.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Money"
s.version = "2.0.0"
s.version = "2.0.1"
s.summary = "Swift types for working with Money."
s.description = <<-DESC
Expand Down
2 changes: 2 additions & 0 deletions Money.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
65599E911DB3D2D500EC123C /* Money.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Money.swift; sourceTree = "<group>"; };
65599E921DB3D2D500EC123C /* NSDecimalExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NSDecimalExtensions.swift; sourceTree = "<group>"; };
65599E931DB3D2D500EC123C /* NSDecimalNumberExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NSDecimalNumberExtensions.swift; sourceTree = "<group>"; };
65AA39ED1DFEF418000942A7 /* Warnings.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Warnings.xcconfig; sourceTree = "<group>"; };
65ECB2BF1DB4134C00F96F46 /* Autogenerate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Autogenerate.h; sourceTree = "<group>"; };
65ECB2C01DB4134C00F96F46 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
/* End PBXFileReference section */
Expand Down Expand Up @@ -158,6 +159,7 @@
655155101DB3D45100368D35 /* Carthage.xcconfig */,
65599E6B1DB3CFD300EC123C /* Money.xcconfig */,
65599E6C1DB3CFD300EC123C /* Version.xcconfig */,
65AA39ED1DFEF418000942A7 /* Warnings.xcconfig */,
);
path = "Supporting Files";
sourceTree = "<group>";
Expand Down
2 changes: 2 additions & 0 deletions Supporting Files/Money.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,6 @@ LD_RUNPATH_SEARCH_PATHS_framework = @executable_path/../Frameworks @loader_path/
LD_RUNPATH_SEARCH_PATHS_xctest = @loader_path/Frameworks @executable_path/Frameworks @loader_path/../Frameworks @executable_path/../Frameworks
LD_RUNPATH_SEARCH_PATHS = $(LD_RUNPATH_SEARCH_PATHS_$(WRAPPER_EXTENSION))

#include "Warnings.xcconfig"
#include "Carthage.xcconfig"

2 changes: 1 addition & 1 deletion Supporting Files/Version.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MONEY_VERSION = 2.0.0
MONEY_VERSION = 2.0.1
27 changes: 27 additions & 0 deletions Supporting Files/Warnings.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
//
// Money
//
// Copyright © 2016 Money. All rights reserved.
//

CLANG_WARN_DOCUMENTATION_COMMENTS = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_ANALYZER_NONNULL = YES

0 comments on commit 03d015a

Please sign in to comment.