Skip to content

Commit

Permalink
Bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keithito committed Dec 22, 2017
1 parent d6fc10e commit 2bf8f51
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [0.4.0](https://github.com/keithito/SimpleAnimation/releases/tag/0.4.0)
*2017-12-21*

- Migrate project to Swift 4 - [#16](https://github.com/keithito/SimpleAnimation/pull/16)
If using Xcode 8, please use the 0.3.2 release.


## [0.3.2](https://github.com/keithito/SimpleAnimation/releases/tag/0.3.2)
*2017-08-21*

Expand Down
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ view.shake(toward: .top, amount: 0.5, duration: 2, delay: 0.5)

### CocoaPods

SimpleAnimation is available through [CocoaPods](http://cocoapods.org). To install
it, add the following to your `Podfile`:
To integrate SimpleAnimation into a project using [CocoaPods](http://cocoapods.org), add the following to your `Podfile`:

```ruby
pod "SimpleAnimation"
Expand All @@ -46,14 +45,20 @@ pod "SimpleAnimation"

### Carthage

SimpleAnimation is available through [Carthage](https://github.com/Carthage/Carthage). To install
it, add the following to your `Cartfile`:
To integrate SimpleAnimation into a project using [Carthage](https://github.com/Carthage/Carthage), add the following to your `Cartfile`:

```
github "keithito/SimpleAnimation"
```


### Older Xcode Versions

If you are using Xcode 8 to build your project, you need to use version **0.3.2** of SimpleAnimation.
You can do so by specifying the version number in your Podfile or Cartfile.



## Supported Animations

The following animations are supported so far:
Expand Down
2 changes: 1 addition & 1 deletion SimpleAnimation.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SimpleAnimation"
s.version = "0.3.2"
s.version = "0.4.0"
s.summary = "A UIView extension to make basic animations, like fades and bounces, simple."
s.homepage = "https://github.com/keithito/SimpleAnimation"
s.license = 'MIT'
Expand Down

0 comments on commit 2bf8f51

Please sign in to comment.