From 60e09a69c1134a3aa29ca8fdd09207fa5df8eeb6 Mon Sep 17 00:00:00 2001 From: Jakub Kaspar Date: Wed, 26 Feb 2020 13:31:22 +0100 Subject: [PATCH] Update config and podspec --- .circleci/config.yml | 22 ++++++++-------------- MessageKit.podspec | 6 ------ 2 files changed, 8 insertions(+), 20 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index edc4d896..78e7f1be 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,19 +1,13 @@ -# .circleci/config.yml - -# Specify the config version - version 2 is latest. +# Specify the config version version: 2.1 -# Define the jobs for the current project. +# Define the jobs for the current project jobs: - build-and-test: - + build_tests: + macos: + xcode: 11.3.1 environment: - DESTINATION: "platform=iOS Simulator,name=iPhone 11 Pro" - - # Specify the Xcode version to use. - macos: - xcode: "11.3.1" - # Define the steps required to build the project. steps: # Get the code from the VCS provider. @@ -71,6 +65,6 @@ jobs: # destination: scan-logs workflows: - build-and-deploy: - jobs: - - build-and-test + build_and_tests: + jobs: + - build_tests diff --git a/MessageKit.podspec b/MessageKit.podspec index f2b4abd5..cd49bca1 100644 --- a/MessageKit.podspec +++ b/MessageKit.podspec @@ -11,17 +11,11 @@ Pod::Spec.new do |s| s.source = { :git => 'https://github.com/MessageKit/MessageKit.git', :tag => s.version } s.source_files = 'Sources/**/*.swift' - s.pod_target_xcconfig = { - "SWIFT_VERSION" => "5.0", - } - s.swift_version = '5.0' s.ios.deployment_target = '9.0' s.ios.resource_bundle = { 'MessageKitAssets' => 'Assets/MessageKitAssets.bundle/Images' } - s.requires_arc = true - s.dependency 'InputBarAccessoryView', '~> 4.3.0' end