File tree 6 files changed +17
-9
lines changed
6 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 1
- 3 .0
1
+ 4 .0
Original file line number Diff line number Diff line change @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
3
3
4
4
# Next
5
5
6
+ ## [ 4.0.0-beta.2] ( https://github.com/MLSDev/TRON/releases/tag/4.0.0-beta.2 )
7
+
8
+ * RxSwift dependency is bumped up to 4.0.0-beta.0, SwiftyJSON dependency is bumped to ` 4.0.0-alpha.1 `
9
+ * Binary release is compiled with Xcode 9.0 Swift 4 compiler.
6
10
* Added ability to customize ` JSONSerialization.ReadingOptions ` for ` JSONDecodableSerializer ` . Unlike previous releases, no options are specified by default(Previously SwiftyJSON used ` allowFragments ` option).
7
11
8
12
To have old behavior that allows fragmented json, use:
Original file line number Diff line number Diff line change 2
2
remote: https://rubygems.org/
3
3
specs:
4
4
CFPropertyList (2.3.5 )
5
- activesupport (4.2.9 )
5
+ activesupport (4.2.10 )
6
6
i18n (~> 0.7 )
7
7
minitest (~> 5.1 )
8
8
thread_safe (~> 0.3 , >= 0.3.4 )
48
48
colored2 (3.1.2 )
49
49
commander-fastlane (4.4.5 )
50
50
highline (~> 1.7.2 )
51
- declarative (0.0.9 )
51
+ declarative (0.0.10 )
52
52
declarative-option (0.1.0 )
53
53
domain_name (0.5.20170404 )
54
54
unf (>= 0.0.5 , < 1.0.0 )
63
63
faraday_middleware (0.12.2 )
64
64
faraday (>= 0.7.4 , < 1.0 )
65
65
fastimage (2.1.0 )
66
- fastlane (2.55 .0 )
66
+ fastlane (2.59 .0 )
67
67
CFPropertyList (>= 2.3 , < 3.0.0 )
68
68
addressable (>= 2.3 , < 3.0.0 )
69
69
babosa (>= 1.0.2 , < 2.0.0 )
96
96
xcodeproj (>= 1.5.0 , < 2.0.0 )
97
97
xcpretty (>= 0.2.4 , < 1.0.0 )
98
98
xcpretty-travis-formatter (>= 0.0.3 )
99
- fastlane-plugin-versioning (0.2.7 )
99
+ fastlane-plugin-versioning (0.2.8 )
100
100
fourflusher (2.0.1 )
101
101
fuzzy_match (2.0.4 )
102
102
gh_inspector (1.0.3 )
103
- google-api-client (0.13.5 )
103
+ google-api-client (0.13.6 )
104
104
addressable (~> 2.5 , >= 2.5.1 )
105
105
googleauth (~> 0.5 )
106
106
httpclient (>= 2.8.1 , < 3.0 )
175
175
unf_ext (0.0.7.4 )
176
176
unicode-display_width (1.3.0 )
177
177
word_wrap (1.0.0 )
178
- xcodeproj (1.5.1 )
178
+ xcodeproj (1.5.2 )
179
179
CFPropertyList (~> 2.3.3 )
180
180
claide (>= 1.0.2 , < 2.0 )
181
181
colored2 (~> 3.1 )
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >4.0.0-beta.1 </string >
18
+ <string >4.0.0-beta.2 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = 'TRON'
3
- s . version = "4.0.0-beta.1 "
3
+ s . version = "4.0.0-beta.2 "
4
4
s . license = 'MIT'
5
5
s . summary = 'Lightweight network abstraction layer, written on top of Alamofire'
6
6
s . homepage = 'https://github.com/MLSDev/TRON'
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ lane :build_watchos do
34
34
end
35
35
36
36
lane :pod_lint do
37
+ sh "bundle exec pod repo update"
37
38
pod_lib_lint ( allow_warnings : true , verbose : true )
38
39
end
39
40
@@ -76,6 +77,9 @@ lane :release do |params|
76
77
sh "git tag #{ version } -m '#{ message } '"
77
78
sh "git push --follow-tags"
78
79
80
+ puts "Updating Specs repo"
81
+ sh "bundle exec pod repo update"
82
+
79
83
puts "Pushing to CocoaPods trunk."
80
84
sh "bundle exec pod trunk push TRON.podspec --allow-warnings"
81
85
You can’t perform that action at this time.
0 commit comments