Skip to content

Commit

Permalink
2.1.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
VilemKurz committed Dec 21, 2018
1 parent aea669f commit b06c945
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [2.1.0]
### Added
- `UIStackView` support. You can now use `UIStackView` as a container, and you can insert child's view with animation if you wish. `UIStackView` is a great help, especially if you have multiple childs. You no longer need to set them constraints - `UIStackView` + autolayout will do this for you.

## [2.0.0]
### Changed
- lib uses Swift 4.2 internally
Expand Down
2 changes: 1 addition & 1 deletion UIViewController-DisplayChild.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'UIViewController-DisplayChild'
s.version = '2.0.0'
s.version = '2.1.0'
s.summary = 'UIViewController containment made easy'
s.description = <<-DESC
The problem: sometimes you need to embed a controller, but it might be embedded already. E.g. you have an empty view, and you do refresh only to get empty view again. If you do not check for its existence, you might end up creating a new instance unneccessarily. This can also have bad side effects when there is some heavier work in viewDidLoad for example.
Expand Down

0 comments on commit b06c945

Please sign in to comment.