diff --git a/HSTableView.podspec b/HSTableView.podspec index 604558d..d57b277 100644 --- a/HSTableView.podspec +++ b/HSTableView.podspec @@ -16,7 +16,7 @@ Pod::Spec.new do |s| # s.name = "HSTableView" - s.version = "1.2.0" + s.version = "1.2.1" s.summary = "A simpler, more elegant UITableView using objects, blocks instead of delegates" # This description is used to generate tags and improve search results. diff --git a/HSTableView/HSTVSection.swift b/HSTableView/HSTVSection.swift index 4b3e068..944407f 100644 --- a/HSTableView/HSTVSection.swift +++ b/HSTableView/HSTVSection.swift @@ -10,7 +10,7 @@ import Foundation /// HSTVSection holds an array of HSTVRows public class HSTVSection { - var rows:[HSTVRowInfo]=[HSTVRowInfo]() + public var rows:[HSTVRowInfo]=[HSTVRowInfo]() weak var table: HSTableView!