Skip to content

Commit 1c543b9

Browse files
committed
Release 1.0.0.beta.1
1 parent 4b664f4 commit 1c543b9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ end
1717
post_install do |installer|
1818
installer.pods_project.targets.each do |target|
1919
target.build_configurations.each do |config|
20-
#config.build_settings['SWIFT_VERSION'] = '2.3'
20+
config.build_settings['SWIFT_VERSION'] = '3.0'
2121
#config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.10'
2222
end
2323
end

RxDataSources.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RxDataSources"
3-
s.version = "0.9"
3+
s.version = "1.0.0.beta.1"
44
s.summary = "This is a collection of reactive data sources for UITableView and UICollectionView."
55
s.description = <<-DESC
66
This is a collection of reactive data sources for UITableView and UICollectionView.
@@ -19,7 +19,7 @@ dataSource.cellFactory = { (tv, ip, i) in
1919
2020
// animated
2121
data
22-
.bindTo(animatedTableView.rx_itemsAnimatedWithDataSource(dataSource))
22+
.bindTo(animatedTableView.rx_items(dataSource: dataSource))
2323
.addDisposableTo(disposeBag)
2424
2525
// normal reload
@@ -40,6 +40,6 @@ data
4040

4141
s.source_files = 'Sources/**/*.swift'
4242

43-
s.dependency 'RxSwift', '~> 2.2'
44-
s.dependency 'RxCocoa', '~> 2.2'
43+
s.dependency 'RxSwift', '~> 3.0'
44+
s.dependency 'RxCocoa', '~> 3.0'
4545
end

RxDataSources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.0.0.beta.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)