Skip to content

Commit b16e306

Browse files
committed
Bump version to 1.0.0
1 parent 344b42d commit b16e306

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SwiftyImage
22
===========
33

4-
![Swift 2.0](https://img.shields.io/badge/Swift-3.0-orange.svg)
4+
![Swift](https://img.shields.io/badge/Swift-3.0-orange.svg)
55
[![CocoaPods](http://img.shields.io/cocoapods/v/SwiftyImage.svg?style=flat)](https://cocoapods.org/pods/SwiftyImage)
66

77
The most sexy way to use images in Swift.
@@ -14,7 +14,7 @@ Features
1414
* [x] [Create and manipulate images with CGContext](#play-with-cgcontext)
1515
* [x] [Combine images with `+` operator](#image-operator)
1616
* [x] iOS support
17-
* [ ] OS X support
17+
* [ ] macOS support
1818

1919

2020
At a Glance
@@ -175,14 +175,14 @@ Installation
175175
- **For iOS 8+ projects:** Use [CocoaPods](https://cocoapods.org) with Podfile:
176176

177177
```ruby
178-
pod 'SwiftyImage', '~> 0.5'
178+
pod 'SwiftyImage', '~> 1.0'
179179
```
180180

181181

182182
- **For iOS 7 projects:** I recommend you to try [CocoaSeeds](https://github.com/devxoul/CocoaSeeds), which uses source code instead of dynamic frameworks. Sample Seedfile:
183183

184184
```ruby
185-
github 'devxoul/SwiftyImage', '0.5.0', :files => 'SwiftyImage/SwiftyImage.swift'
185+
github 'devxoul/SwiftyImage', '1.0.0', :files => 'Sources/SwiftyImage.swift'
186186
```
187187

188188

SwiftyImage.podspec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftyImage'
3-
s.version = '0.5.0'
3+
s.version = '1.0.0'
44
s.summary = 'The most sexy way to use images in Swift.'
55
s.homepage = 'https://github.com/devxoul/SwiftyImage'
66
s.license = { :type => 'MIT', :file => 'LICENSE' }
77
s.author = { 'Suyeol Jeon' => '[email protected]' }
8-
s.source = { :git => 'https://github.com/devxoul/SwiftyImage.git', :tag => s.version.to_s }
8+
s.source = { :git => 'https://github.com/devxoul/SwiftyImage.git',
9+
:tag => s.version.to_s }
910
s.source_files = 'Sources/SwiftyImage.swift'
1011
s.requires_arc = true
1112

0 commit comments

Comments
 (0)