Skip to content

Commit 91d163b

Browse files
committed
Update podspec and contributing doc.
1 parent b2320d6 commit 91d163b

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

CONTRIBUTING.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Thank you for helping out and remember, no contribution is too small.
2121

2222
The main function of the issue tracker is to record bug reports and feature
2323
requests.
24-
For general questions you can look at the [documentation] and [project README](https://github.com/MLSDev/TRON) to learn more about
24+
For general questions you can look at the [documentation], [guides] and [project README](https://github.com/MLSDev/TRON) to learn more about
2525
the project and find some examples.
2626
If you still have questions please consider using [Stack Overflow].
2727

@@ -81,7 +81,7 @@ Create a new branch. Use its name to identify the issue your addressing.
8181

8282
### Step 3: Code
8383

84-
- **Follow the code conventions**: Make sure that new code does not produce any warnings
84+
- **Follow the code conventions**: Make sure that new code does not produce any warnings
8585
from automatic linter using SwiftLint.
8686

8787
- **Document your changes**: Add or update the relevant entries for your change
@@ -133,8 +133,9 @@ at the end of the PR message, where ### is the number of the issue.
133133

134134
## Additional notes
135135

136-
TRON heavily relies on Foundation URL loading system and [Alamofire](https://github.com/Alamofire/Alamofire),
136+
TRON heavily relies on Foundation URL loading system and [Alamofire](https://github.com/Alamofire/Alamofire),
137137
so you may need to dig into documentation of those on specific topic you are encountering issues with or want to improve.
138138

139-
[documentation]: https://github.com/MLSDev/TRON/tree/master/Docs
139+
[documentation]: https://mlsdev.github.io/TRON/
140+
[guides]: https://github.com/MLSDev/TRON/tree/master/Docs
140141
[Stack Overflow]: http://stackoverflow.com/

TRON.podspec

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ Pod::Spec.new do |s|
44
s.license = 'MIT'
55
s.summary = 'Lightweight network abstraction layer, written on top of Alamofire'
66
s.homepage = 'https://github.com/MLSDev/TRON'
7-
s.authors = { 'Denys Telezhkin' => 'denys.telezhkin@yandex.ru' }
7+
s.authors = { 'Denys Telezhkin' => 'denys.telezhkin[email protected]' }
88
s.social_media_url = 'https://twitter.com/MLSDevCom'
99
s.source = { :git => 'https://github.com/MLSDev/TRON.git', :tag => s.version.to_s }
1010
s.requires_arc = true
11-
s.ios.deployment_target = '8.0'
12-
s.tvos.deployment_target = '9.0'
13-
s.osx.deployment_target = '10.10'
14-
s.watchos.deployment_target = '2.0'
11+
s.ios.deployment_target = '10.0'
12+
s.tvos.deployment_target = '10.0'
13+
s.osx.deployment_target = '10.12'
14+
s.watchos.deployment_target = '3.0'
1515

16-
s.dependency 'Alamofire' , '~> 4.5'
16+
s.dependency 'Alamofire' , '~> 5.0.0-beta.3'
1717

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

0 commit comments

Comments
 (0)