Skip to content

Commit

Permalink
Remove SwiftUI dependency (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
vpeschenkov committed Oct 18, 2021
1 parent 512003b commit fe5af34
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,10 @@
#### Fixed for any bug fixes.
```

### 1.2.5
#### Removed
- Removed `SwiftUI` dependency (#31)

### 1.2.4
#### Added
- Xcode 12 support
Expand Down
4 changes: 2 additions & 2 deletions LetterAvatarKit.podspec
Expand Up @@ -2,14 +2,14 @@ Pod::Spec.new do |spec|
spec.name = 'LetterAvatarKit'
spec.ios.deployment_target = '9.0'
spec.tvos.deployment_target = '9.0'
spec.version = '1.2.4'
spec.version = '1.2.5'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/vpeschenkov/LetterAvatarKit'
spec.authors = { 'Viktor Peschenkov' => 'v.peschenkov@gmail.com' }
spec.summary = 'An extension that generates letter-based avatars/placeholders written in Swift'
spec.source = { :git => 'https://github.com/vpeschenkov/LetterAvatarKit.git', :tag => spec.version.to_s }
spec.source_files = 'LetterAvatarKit/*.{h,swift}', 'LetterAvatarKit/Extensions/*.{swift}'
spec.requires_arc = true
spec.framework = 'Foundation', 'UIKit', 'SwiftUI'
spec.framework = 'Foundation', 'UIKit'
spec.swift_version = '5.0'
end
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -27,7 +27,7 @@
`LetterAvatarKit` is available through [CocoaPods](https://cocoapods.org). To install
it, simply add the following line to your Podfile:
```ruby
pod "LetterAvatarKit", "1.2.4" # Swift 5.0+, Xcode 12
pod "LetterAvatarKit", "1.2.5" # Swift 5.0+, Xcode 12
pod "LetterAvatarKit", "1.2.3" # Swift 5.0+, Xcode 11
pod "LetterAvatarKit", "1.1.7" # Swift 4.2
pod "LetterAvatarKit", "1.1.5" # Swift 4.0
Expand All @@ -38,7 +38,7 @@ pod "LetterAvatarKit", "1.1.5" # Swift 4.0
Add this to `Cartfile`

```ruby
github "vpeschenkov/LetterAvatarKit" == 1.2.4 # Swift 5.0+, Xcode 12
github "vpeschenkov/LetterAvatarKit" == 1.2.5 # Swift 5.0+, Xcode 12
github "vpeschenkov/LetterAvatarKit" == 1.2.3 # Swift 5.0+, Xcode 11
github "vpeschenkov/LetterAvatarKit" == 1.1.7 # Swift 4.2
github "vpeschenkov/LetterAvatarKit" == 1.1.5 # Swift 4.0
Expand Down

0 comments on commit fe5af34

Please sign in to comment.