Quick: Release swift 3 branch on cocoapods

Created on 21 Sep 2016  路  14Comments  路  Source: Quick/Quick

@modocache Now that Xcode 8 / Swift 3 is out, it would be fantastic to have an official Quick version on cocoapods that support swift 3, so we can stop relying on the swift3 branch directly.

enhancement priority discussion

Most helpful comment

@tcurdt @tw-safad Swift 3 branch has been merged into master and is pending for released!

All 14 comments

Hey @ldiqual, I think a new release for Swift 3 is coming soon, see: https://github.com/Quick/Quick/pull/601#issuecomment-248664253

@pedrovereza when we can expect new release ?

why on earth was the swift3 branch removed??

@tcurdt @tw-safad Swift 3 branch has been merged into master and is pending for released!

will it be released soon?

I hope so :)

Aaaaand it's out

@pedrovereza We updated with the new versions . Still not able to import Quick and Nimble modules in swift test targets.

@tw-safad are you using cocoapods? If so, add this to to your Podfile:

post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['SWIFT_VERSION'] = '3.0'
      config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.10'
    end
  end
end

@damianesteban i added that to the end of Podfile, still getting No such moduleQuick``

  def testing_pods
      pod 'Quick', '~> 0.10'
      pod 'Nimble'
  end

@damianesteban No luck . Still facing same issue . Not able to import Quick/Nimble module.

@tw-safad version of CocoaPods you use? I think for Xcode 8 / Swift 3, CocoaPods 1.1.0 is strongly recommended (if not required).

@dusek Thanks a lot . Its working now .

Closing since 3.0 support has been released.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

onmyway133 picture onmyway133  路  8Comments

ivanruizscm picture ivanruizscm  路  7Comments

donnywals picture donnywals  路  6Comments

AndrewSB picture AndrewSB  路  3Comments

noisypigeon picture noisypigeon  路  6Comments