Skip to content

Commit 9f9409d

Browse files
committed
Bump version
1 parent 6dbdcea commit 9f9409d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</a>
1111
</p>
1212

13-
**This project is in active development state and anything may be changed till 1.0.0**
13+
**This project is in active development state till 1.0.0**
1414

1515
Build UI in SwiftUI-like way right now in Xcode10+ and for iOS9 and higher! 😺
1616

@@ -37,15 +37,15 @@ lazy var view1 = View().background(.black).size(100).centerInSuperview()
3737
lazy var view2 = View().background(.red)
3838
.size(30, 20)
3939
.centerXInSuperview()
40-
// yes! you can declare constraints before adding to superivew 🤯
40+
// yes! you can declare constraints before adding to superivew
4141
.top(to: .bottom, of: view1, 16)
4242
// view with view1 and view2 as subviews
4343
let awesomeView = View.subviews { [view1, view2] }
4444

4545
func viewDidLoad() {
4646
super.viewDidLoad()
4747
view.addSubview(awesomeView)
48-
// and yes! you can reach and change declared constraints easily! 🤯🤯🤯
48+
// and yes! you can reach and change declared constraints easily!
4949
UIView.animate(duration: 0.5) {
5050
view2.centerX = 30
5151
view2.outer[.top, view1] = 16
@@ -152,7 +152,7 @@ Wondered?❤️ Try it yourself!😃 Now!🚀
152152

153153
Add the following line to your Podfile:
154154
```ruby
155-
pod 'UIKit-Plus', '~> 0.12.2'
155+
pod 'UIKit-Plus', '~> 0.13.0'
156156
```
157157

158158
#### With [Swift Package Manager](https://swift.org/package-manager/)

UIKit-Plus.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Pod::Spec.new do |s|
1010
s.name = 'UIKit-Plus'
1111
s.module_name = 'UIKitPlus'
12-
s.version = '0.12.2'
12+
s.version = '0.13.0'
1313
s.summary = '🏰 Declarative UIKit wrapper inspired by SwiftUI'
1414

1515
s.swift_version = '4.2'

0 commit comments

Comments
 (0)