Skip to content

Commit b10e31d

Browse files
author
Olga Konoreva
committed
Update CHANGELOG.md
1 parent 10d854c commit b10e31d

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Change Log
2-
All notable changes to the library will be documented in this file.
2+
All notable changes of the library will be documented in this file.
33

4-
## [Unreleased]
4+
## 2.1 - [2017-10-23]
5+
### Added
6+
- Swift 4 support
7+
- Code refactoring
8+
- Check if menu is opened before a transition
9+
10+
### Fixed
11+
- Small UI fix of Sample, associated with iOS 11
12+
13+
## 2.0 - [2017-06-07]
514
### Added
615
- UITabBarController and UINavigationController menu items support
716
- Rotation support
@@ -18,7 +27,7 @@ All notable changes to the library will be documented in this file.
1827

1928
**Migration notes**
2029

21-
- To mark UIViewController as item of SideMenu you should adopt `SideMenuItemContent` protocol instead of inheritance.
30+
- To mark UIViewController as item of SideMenu you should adopt `SideMenuItemContent` protocol instead of inheritance from `MenuItemContentViewController`.
2231
To show menu you should call `showSideMenu()` method from this protocol.
2332
```swift
2433
import InteractiveSideMenu
@@ -30,6 +39,8 @@ class KittyViewController: UIViewController, SideMenuItemContent {
3039
}
3140
}
3241
```
42+
Please, keep in mind, that now you are manipulating with `UIViewControllers` instead of `MenuItemContentViewControllers` in your `HostViewController` class.
43+
3344
- To customize animation you should now update ```transitionOptions``` property in ```MenuContainerViewColtroller``` class.
3445
```swift
3546
override func viewDidLoad() {
@@ -57,5 +68,6 @@ override func viewWillTransition(to size: CGSize, with coordinator: UIViewContro
5768
- Sample demonstrating using SideMenu library
5869
- README file
5970

60-
[Unreleased]: https://github.com/handsomecode/InteractiveSideMenu/compare/master...feature/nav_and_tab_controllers_support
71+
[2017-10-23]: https://github.com/handsomecode/InteractiveSideMenu/compare/2.0...2.1
72+
[2017-06-07]: https://github.com/handsomecode/InteractiveSideMenu/compare/1.0...2.0
6173
[Issue #17]: https://github.com/handsomecode/InteractiveSideMenu/issues/17

0 commit comments

Comments
 (0)