Skip to content

Commit

Permalink
Update for Release 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeLin committed Jun 13, 2019
1 parent b2c6d56 commit 0776c5c
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 7 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Expand Up @@ -18,6 +18,21 @@ N/A

N/A

### [6.0.0](https://github.com/IBAnimatable/IBAnimatable/releases/tag/6.0.0)

#### API breaking changes

N/A

#### Enhancements

- Support Swift 5.0 [#603](https://github.com/IBAnimatable/IBAnimatable/pull/603) by [@shark-sea](https://github.com/shark-sea)
- Update SwiftPM manifest file to support Accio [#608](https://github.com/IBAnimatable/IBAnimatable/pull/608) by [@Dschee](https://github.com/Dschee)

#### Bugfixes

N/A

### [5.2.1](https://github.com/IBAnimatable/IBAnimatable/releases/tag/5.2.1)

#### API breaking changes
Expand Down Expand Up @@ -507,3 +522,5 @@ None
### [1.0](https://github.com/IBAnimatable/IBAnimatable/releases/tag/1.0)

- Initial release


2 changes: 1 addition & 1 deletion Documentation/README.zh.md
Expand Up @@ -124,7 +124,7 @@ view.animate(.squeeze(way: .in, direction: .left))
`IBAnimatable` 文件夹拷贝到你的 Xcode 项目中

### Swift package manager
`Package.swift` 中添加 `.Package(url: "https://github.com/IBAnimatable/IBanimatable.git", majorVersion: 5)`
`Package.swift` 中添加 `.Package(url: "https://github.com/IBAnimatable/IBanimatable.git", majorVersion: 6)`

### CocoaPods

Expand Down
2 changes: 1 addition & 1 deletion IBAnimatable.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "IBAnimatable"
s.version = "5.2.1"
s.version = "6.0.0"
s.summary = "Design and prototype UI, interaction, navigation, transition and animation for App Store ready Apps in Interface Builder with IBAnimatable."
s.homepage = "https://github.com/IBAnimatable/IBAnimatable"
s.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
13 changes: 8 additions & 5 deletions README.md
Expand Up @@ -5,7 +5,7 @@ Design and prototype customized UI, interaction, navigation, transition and anim
![IBAnimatable hero image](https://raw.githubusercontent.com/IBAnimatable/IBAnimatable-Misc/master/IBAnimatable/IBAnimatable.gif)

[![Build Status](https://travis-ci.org/IBAnimatable/IBAnimatable.svg?branch=master)](https://travis-ci.org/IBAnimatable/IBAnimatable)
[![Language](https://img.shields.io/badge/language-Swift%204.2-orange.svg)](https://swift.org)
[![Language](https://img.shields.io/badge/language-Swift%205-orange.svg)](https://swift.org)
[![CocoaPods](https://img.shields.io/cocoapods/v/IBAnimatable.svg?style=flat)](http://cocoadocs.org/docsets/IBAnimatable/)
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Accio supported](https://img.shields.io/badge/Accio-supported-0A7CF5.svg?style=flat)](https://github.com/JamitLabs/Accio)
Expand Down Expand Up @@ -41,7 +41,7 @@ Copy and paste `IBAnimatable` folder in your Xcode project.
To integrate using Apple's Swift package manager, add the following as a dependency to your `Package.swift`:

```swift
.package(url: "https://github.com/IBAnimatable/IBAnimatable.git", .upToNextMajor(from: "5.0.0"))
.package(url: "https://github.com/IBAnimatable/IBAnimatable.git", .upToNextMajor(from: "6.0.0"))
```

### [CocoaPods](https://cocoapods.org)
Expand All @@ -59,10 +59,10 @@ Add the following entry in your Cartfile:
```

### [Accio](https://github.com/JamitLabs/Accio)
Add the following etnry in your Package.swift:
Add the following entry in your Package.swift:

```swift
.package(url: "https://github.com/IBAnimatable/IBAnimatable.git", .upToNextMajor(from: "5.2.1")),
.package(url: "https://github.com/IBAnimatable/IBAnimatable.git", .upToNextMajor(from: "6.0.0")),
```

Next, add `IBAnimatable` to your App targets dependencies like so:
Expand All @@ -86,8 +86,11 @@ As @DanielAsher mentioned

Add this repo as a submodule, and add the project file to your workspace. You can then link against `IBAnimatable.framework` for your application target.

## Version 6
IBAnimatable 6 is the latest major release of IBAnimatable. This version supports Swift 5. There are no API breaking changes from migrating from version 5.x.

## Version 5.2
IBAnimatable 5.2 is the latest major release of IBAnimatable. This version supports Swift 4.2. There are no API breaking changes from migrating from version 4.x.
This version supports Swift 4.2. There are no API breaking changes from migrating from version 4.x.

If you migrate from version 3.x. Please check out [IBAnimatable 4.0 Migration Guide](Documentation/IBAnimatable%204.0%20Migration%20Guide.md) for more information.

Expand Down

0 comments on commit 0776c5c

Please sign in to comment.