diff --git a/.swift-version b/.swift-version index 8c50098..a3ec5a4 100644 --- a/.swift-version +++ b/.swift-version @@ -1 +1 @@ -3.1 +3.2 diff --git a/.travis.yml b/.travis.yml index 6a92a49..9f30930 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,7 @@ script: - xcodebuild -project "$PROJECT" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ENABLE_TESTABILITY=YES ONLY_ACTIVE_ARCH=NO $ACTION | xcpretty - if [ $POD_LINT == "YES" ]; then - pod repo update --silent; + pod repo update; pod lib lint; fi notifications: diff --git a/Cartfile b/Cartfile index f723a3f..821f23d 100644 --- a/Cartfile +++ b/Cartfile @@ -1 +1 @@ -github "Swinject/Swinject" ~> 2.1 +github "Swinject/Swinject" ~> 2.2 diff --git a/Cartfile.private b/Cartfile.private index 8f0c9e7..8c5a3a2 100644 --- a/Cartfile.private +++ b/Cartfile.private @@ -1,2 +1,2 @@ -github "Quick/Quick" ~> 1.1 +github "Quick/Quick" ~> 1.2 github "Quick/Nimble" ~> 7.0 diff --git a/Cartfile.resolved b/Cartfile.resolved index c89606e..3256b66 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -1,3 +1,3 @@ -github "Quick/Nimble" "v7.0.1" -github "Quick/Quick" "v1.1.0" -github "Swinject/Swinject" "2.1.1" +github "Quick/Nimble" "v7.0.3" +github "Quick/Quick" "v1.2.0" +github "Swinject/Swinject" "2.2.0" diff --git a/Sources/Info.plist b/Sources/Info.plist index 40d6204..c8c3a82 100644 --- a/Sources/Info.plist +++ b/Sources/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.1.2 + 1.2.0 CFBundleSignature ???? CFBundleVersion diff --git a/SwinjectStoryboard.podspec b/SwinjectStoryboard.podspec index 4de55c6..7f0cb3e 100644 --- a/SwinjectStoryboard.podspec +++ b/SwinjectStoryboard.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SwinjectStoryboard" - s.version = "1.1.2" + s.version = "1.2.0" s.summary = "Swinject extension for automatic dependency injection via Storyboard" s.description = <<-DESC SwinjectStoryboard is an extension of Swinject to automatically inject dependency to view controllers instantiated by a storyboard. @@ -17,6 +17,6 @@ Pod::Spec.new do |s| s.ios.deployment_target = '8.0' s.osx.deployment_target = '10.10' s.tvos.deployment_target = '9.0' - s.dependency 'Swinject', '~> 2.1' + s.dependency 'Swinject', '~> 2.2' s.requires_arc = true end