Skip to content

Commit

Permalink
made the SwiftBinding version more explicit in the podfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Smith committed Jul 16, 2015
1 parent 81476a4 commit 00317a3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Podfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
pod 'SwiftBinding'
pod 'SwiftBinding', '~> 1.1.0'
2 changes: 1 addition & 1 deletion SwiftBindingUI.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "SwiftBindingUI"
s.version = "1.1.1"
s.version = "1.1.2"
s.summary = "A library of simple UI components built around the SwiftBinding library."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion SwiftBindingUI/BindableCollectionView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class BindableCollectionView:UICollectionView, UICollectionViewDataSource
set(value){
if(value != nil){
//HACK: set to public property to add bindings properly, unsafe for subclassing.
self.sections = BindableArray<PBindableCollectionSection>(internalArray: [value!])
self.sections = BindableArray<PBindableCollectionSection>(value: [value!])
}
else{
_sections = nil
Expand Down
2 changes: 1 addition & 1 deletion SwiftBindingUI/BindableTableView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class BindableTableView : SwiftTableView, PHiddenBindable{
set(value){
if(value != nil){
//HACK: set to public property to add bindings properly, unsafe for subclassing.
self.sections = BindableArray<PBindableTableSection>(internalArray: [value!])
self.sections = BindableArray<PBindableTableSection>(value: [value!])
}
else{
_sections = nil
Expand Down

0 comments on commit 00317a3

Please sign in to comment.