Skip to content

Commit 8ba0b2e

Browse files
committed
update to Swift 2.3
1 parent 2f1fb43 commit 8ba0b2e

File tree

7 files changed

+13
-9
lines changed

7 files changed

+13
-9
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4+
## [1.2.0](https://github.com/MLSDev/TRON/releases/tag/1.2.0)
5+
6+
Support for building with Swift 2.3 along with Swift 2.2.
7+
48
## [1.1.0](https://github.com/MLSDev/TRON/releases/tag/1.1.0)
59

610
### Added

Cartfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "Alamofire/Alamofire" "swift2.3"
2-
github "SwiftyJSON/SwiftyJSON"
3-
github "ReactiveX/RxSwift"
1+
github "Alamofire/Alamofire" ~> 3.5.0
2+
github "SwiftyJSON/SwiftyJSON" ~> 2.3
3+
github "ReactiveX/RxSwift" ~> 2.6.0

Carthage/Checkouts/Alamofire

Submodule Alamofire updated 40 files

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import PackageDescription
2525
let package = Package(
2626
name: "TRON",
2727
dependencies: [
28-
.Package(url: "https://github.com/Alamofire/Alamofire.git", versions: Version(3, 1, 5)..<Version(4, 0, 0)),
28+
.Package(url: "https://github.com/Alamofire/Alamofire.git", versions: Version(3, 5, 0)..<Version(4, 0, 0)),
2929
.Package(url: "https://github.com/SwiftyJSON/SwiftyJSON.git", versions: Version(2, 3, 1)..<Version(3, 0, 0))
3030
]
3131
)

TRON.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'TRON'
3-
s.version = '1.1.0'
3+
s.version = '1.2.0'
44
s.license = 'MIT'
55
s.summary = 'Lightweight network abstraction layer, written on top of Alamofire'
66
s.homepage = 'https://github.com/MLSDev/TRON'
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
1313
s.osx.deployment_target = '10.10'
1414
s.watchos.deployment_target = '2.0'
1515
s.frameworks = 'Foundation'
16-
s.dependency 'Alamofire' , '~> 3.4'
16+
s.dependency 'Alamofire' , '~> 3.5'
1717

1818
s.subspec 'Core' do |core|
1919
core.ios.frameworks = 'UIKit'

0 commit comments

Comments
 (0)