Skip to content

Commit c482128

Browse files
committed
Releasing version 4.0.0-beta.2.
1 parent c43dca2 commit c482128

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

Diff for: .swift-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0
1+
4.0

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.
33

44
# Next
55

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.
610
* Added ability to customize `JSONSerialization.ReadingOptions` for `JSONDecodableSerializer`. Unlike previous releases, no options are specified by default(Previously SwiftyJSON used `allowFragments` option).
711

812
To have old behavior that allows fragmented json, use:

Diff for: Gemfile.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GEM
22
remote: https://rubygems.org/
33
specs:
44
CFPropertyList (2.3.5)
5-
activesupport (4.2.9)
5+
activesupport (4.2.10)
66
i18n (~> 0.7)
77
minitest (~> 5.1)
88
thread_safe (~> 0.3, >= 0.3.4)
@@ -48,7 +48,7 @@ GEM
4848
colored2 (3.1.2)
4949
commander-fastlane (4.4.5)
5050
highline (~> 1.7.2)
51-
declarative (0.0.9)
51+
declarative (0.0.10)
5252
declarative-option (0.1.0)
5353
domain_name (0.5.20170404)
5454
unf (>= 0.0.5, < 1.0.0)
@@ -63,7 +63,7 @@ GEM
6363
faraday_middleware (0.12.2)
6464
faraday (>= 0.7.4, < 1.0)
6565
fastimage (2.1.0)
66-
fastlane (2.55.0)
66+
fastlane (2.59.0)
6767
CFPropertyList (>= 2.3, < 3.0.0)
6868
addressable (>= 2.3, < 3.0.0)
6969
babosa (>= 1.0.2, < 2.0.0)
@@ -96,11 +96,11 @@ GEM
9696
xcodeproj (>= 1.5.0, < 2.0.0)
9797
xcpretty (>= 0.2.4, < 1.0.0)
9898
xcpretty-travis-formatter (>= 0.0.3)
99-
fastlane-plugin-versioning (0.2.7)
99+
fastlane-plugin-versioning (0.2.8)
100100
fourflusher (2.0.1)
101101
fuzzy_match (2.0.4)
102102
gh_inspector (1.0.3)
103-
google-api-client (0.13.5)
103+
google-api-client (0.13.6)
104104
addressable (~> 2.5, >= 2.5.1)
105105
googleauth (~> 0.5)
106106
httpclient (>= 2.8.1, < 3.0)
@@ -175,7 +175,7 @@ GEM
175175
unf_ext (0.0.7.4)
176176
unicode-display_width (1.3.0)
177177
word_wrap (1.0.0)
178-
xcodeproj (1.5.1)
178+
xcodeproj (1.5.2)
179179
CFPropertyList (~> 2.3.3)
180180
claide (>= 1.0.2, < 2.0)
181181
colored2 (~> 3.1)

Diff for: Supporting files/Framework.plist

+1-1
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>4.0.0-beta.1</string>
18+
<string>4.0.0-beta.2</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Diff for: TRON.podspec

+1-1
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 = "4.0.0-beta.1"
3+
s.version = "4.0.0-beta.2"
44
s.license = 'MIT'
55
s.summary = 'Lightweight network abstraction layer, written on top of Alamofire'
66
s.homepage = 'https://github.com/MLSDev/TRON'

Diff for: fastlane/Fastfile

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ lane :build_watchos do
3434
end
3535

3636
lane :pod_lint do
37+
sh "bundle exec pod repo update"
3738
pod_lib_lint(allow_warnings: true, verbose: true)
3839
end
3940

@@ -76,6 +77,9 @@ lane :release do |params|
7677
sh "git tag #{version} -m '#{message}'"
7778
sh "git push --follow-tags"
7879

80+
puts "Updating Specs repo"
81+
sh "bundle exec pod repo update"
82+
7983
puts "Pushing to CocoaPods trunk."
8084
sh "bundle exec pod trunk push TRON.podspec --allow-warnings"
8185

0 commit comments

Comments
 (0)