Skip to content

Commit 134c47b

Browse files
committed
Fix swift version
1 parent 9eebac2 commit 134c47b

File tree

7 files changed

+93
-92
lines changed

7 files changed

+93
-92
lines changed

Example/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- JTTableViewController (2.1.3)
2+
- JTTableViewController (2.1.4)
33

44
DEPENDENCIES:
55
- JTTableViewController (from `..`)
@@ -9,7 +9,7 @@ EXTERNAL SOURCES:
99
:path: ".."
1010

1111
SPEC CHECKSUMS:
12-
JTTableViewController: a9c2312b138984d9add6966592610f2732c06cd6
12+
JTTableViewController: a59f53652ad68881f5ab31ec69d6d01b27db5615
1313

1414
PODFILE CHECKSUM: d1393c69b80fdf59d735ab405993c4e9e338446b
1515

Example/Pods/Local Podspecs/JTTableViewController.podspec.json

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/project.pbxproj

+79-81
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/JTTableViewController/Info.plist

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JTTableViewController.podspec

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "JTTableViewController"
3-
s.version = "2.1.3"
3+
s.version = "2.1.4"
44
s.summary = "A ViewController with a tableView which manage pagination and loaders for iOS."
55
s.homepage = "https://github.com/jonathantribouharet/JTTableViewController"
66
s.license = { :type => 'MIT' }
@@ -9,4 +9,5 @@ Pod::Spec.new do |s|
99
s.source = { :git => "https://github.com/jonathantribouharet/JTTableViewController.git", :tag => s.version.to_s }
1010
s.source_files = 'Source/*.swift'
1111
s.screenshots = ["https://raw.githubusercontent.com/jonathantribouharet/JTTableViewController/master/Screens/example.gif"]
12+
s.swift_version = '4.2'
1213
end

Package.swift

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import PackageDescription
22

33
let package = Package(
4-
name: "JTTableViewController"
4+
name: "JTTableViewController",
5+
swiftLanguageVersions: [4]
56
)

0 commit comments

Comments
 (0)