From 2bbab9c0259bd96db5c7a5217229660c8af441c5 Mon Sep 17 00:00:00 2001 From: Jimmy M Andersson Date: Sun, 23 Jan 2022 18:16:08 +0100 Subject: [PATCH] Preparation for Beta 5 release --- README.md | 13 +------------ StatKit.podspec | 16 ---------------- 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 StatKit.podspec diff --git a/README.md b/README.md index 2db0d00..af9af86 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,6 @@

Swift PM Compatible - Cocoapods Compatible

*** @@ -128,7 +127,7 @@ To install StatKit using the [Swift Package Manager](https://swift.org/package-m let package = Package( ... dependencies: [ - .package(url: "https://github.com/JimmyMAndersson/StatKit.git", from: "0.4.0") + .package(url: "https://github.com/JimmyMAndersson/StatKit.git", from: "0.5.0") ], ... ) @@ -139,16 +138,6 @@ Then import StatKit where you would like to use it: ```swift import StatKit ``` -### Cocoapods - -To install StatKit using [Cocoapods](https://cocoapods.org/), simply add `pod 'StatKit'` to your Podfile. To use a specific version, check out the [Podfile reference](https://guides.cocoapods.org/using/the-podfile.html) for the appropriate syntax. - -```ruby -target 'MyApp' do - use_frameworks! - pod 'StatKit' -end -``` ## Contributions and support diff --git a/StatKit.podspec b/StatKit.podspec deleted file mode 100644 index e59e11f..0000000 --- a/StatKit.podspec +++ /dev/null @@ -1,16 +0,0 @@ -Pod::Spec.new do |spec| - spec.name = "StatKit" - spec.version = "0.4.0" - spec.summary = "StatKit adds statistical analysis tools to your Swift projects." - spec.homepage = "https://github.com/JimmyMAndersson/StatKit" - spec.license = { :type => "MIT", :file => "LICENSE" } - spec.author = { "Jimmy M Andersson" => "dev@applyn.se" } - spec.social_media_url = "https://twitter.com/JimmyMAndersson" - spec.ios.deployment_target = "13.0" - spec.osx.deployment_target = "10.15" - spec.tvos.deployment_target = "13.0" - spec.swift_version = '5.5' - spec.source = { :git => "https://github.com/JimmyMAndersson/StatKit.git", :tag => "#{spec.version}" } - spec.source_files = "Sources/StatKit/**/*.swift" - spec.cocoapods_version = '>= 1.9.0' -end