Skip to content

Commit 04f3802

Browse files
committed
Update README and podspec files
1 parent 88efd77 commit 04f3802

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
[![CocoaPods Platforms](https://img.shields.io/cocoapods/p/SwiftySound.svg)](https://cocoapods.org/pods/SwiftySound)
66
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-brightgreen.svg)](https://github.com/Carthage/Carthage)
77
[![SPM ready](https://img.shields.io/badge/SPM-ready-orange.svg)](https://swift.org/package-manager/)
8-
[![Build status](https://api.travis-ci.org/adamcichy/SwiftySound.svg?branch=master)](https://travis-ci.org/adamcichy/SwiftySound)
9-
[![codecov](https://codecov.io/gh/adamcichy/SwiftySound/branch/master/graph/badge.svg)](https://codecov.io/gh/adamcichy/SwiftySound)
108
[![codebeat](https://codebeat.co/badges/b51bedad-3c13-4ef2-a632-5c4e3d4fa759)](https://codebeat.co/projects/github-com-adamcichy-swiftysound-master)
11-
[![Codacy](https://api.codacy.com/project/badge/Grade/048aad599e8549fa9f5d433f690dd796)](https://www.codacy.com/app/adamcichy/SwiftySound?utm_source=github.com&utm_medium=referral&utm_content=adamcichy/SwiftySound&utm_campaign=Badge_Grade)
129

1310
## Overview
1411
SwiftySound is a simple library that lets you deal with Swift sounds easily.
@@ -105,13 +102,14 @@ The callback is not called if the sound was stopped, interrupted or in case of a
105102

106103
## Requirements
107104
- Swift 5
108-
- Xcode 10.2 or later
109-
- iOS 8.0 or later
110-
- tvOS 9.0 or later
111-
- macOS 10.9 or later
105+
- Xcode 15 or later
106+
- iOS 12.0 or later
107+
- tvOS 12.0 or later
108+
- macOS 10.13 or later
112109

113110
For Xcode 8 and Swift 3 support, please use SwiftySound version `0.7.0`.
114111
For Xcode 9 and Swift 4 support, please use SwiftySound version `1.0.0`.
112+
For Xcode 10 and iOS 9 support, please use SwiftySound version `1.2.0`.
115113

116114
## Installation
117115
### Installation with CocoaPods
@@ -120,7 +118,7 @@ For Xcode 9 and Swift 4 support, please use SwiftySound version `1.0.0`.
120118

121119
#### Podfile
122120
```ruby
123-
platform :ios, '8.0'
121+
platform :ios, '12.0'
124122
use_frameworks!
125123
pod 'SwiftySound'
126124
```

SwiftySound.podspec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
Pod::Spec.new do |s|
22

33
s.name = 'SwiftySound'
4-
s.version = '1.2.0'
4+
s.version = '1.3.0'
55
s.summary = 'SwiftySound lets you play sounds with a single line of code.'
66

77
s.homepage = 'https://github.com/adamcichy/SwiftySound'
88
s.license = { :type => 'MIT', :file => 'LICENSE' }
99
s.author = { 'Adam Cichy' => '[email protected]' }
1010
s.social_media_url = 'https://www.facebook.com/Moonlight-Apps-146257068893019/'
1111

12-
s.ios.deployment_target = '8.0'
13-
s.osx.deployment_target = '10.9'
14-
s.tvos.deployment_target = '9.0'
12+
s.ios.deployment_target = '12.0'
13+
s.osx.deployment_target = '10.13'
14+
s.tvos.deployment_target = '12.0'
1515
s.source = { :git => 'https://github.com/adamcichy/SwiftySound.git', :tag => s.version }
1616

1717
s.source_files = 'Sources/**/*.swift'
1818
s.frameworks = 'Foundation', 'AVFoundation'
1919

20-
s.swift_version = '5.1'
20+
s.swift_version = '5.10'
2121

2222
end

0 commit comments

Comments
 (0)