Skip to content

Commit 8794a8c

Browse files
SunnyPROthelvis4
authored andcommitted
Migrate to Swift 3.0.1 (#38)
1 parent 8e72193 commit 8794a8c

File tree

203 files changed

+11109
-2172
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+11109
-2172
lines changed

.codecov.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
coverage:
2+
status:
3+
patch:
4+
framework: # declare a new status context "framework"
5+
threshold: null
6+
paths: "TaylorFramework/" # only include coverage in "TaylorFramework/" folder
7+
project:
8+
framework:
9+
target: 90% # we always want 90% coverage here
10+
paths: "TaylorFramework/"

.travis.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ language: objective-c
22
xcode_project: Taylor.xcodeproj
33
xcode_scheme: Taylor
44
xcode_sdk: macosx
5-
osx_image: xcode7.3
6-
script: ./test.sh
5+
osx_image: xcode8.1
6+
script:
7+
- ./build.sh
8+
- ./test.sh
79
after_success:
8-
- bash <(curl -s https://codecov.io/bash)
10+
- bash <(curl -s https://codecov.io/bash) -J 'TaylorFramework'

CHANGELOG.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
## 0.2.0: Newer and faster
2+
3+
* Migrated to Swift 3.0.1.
4+
[Andrei Vacaruc](https://github.com/sunnypro)
5+
6+
## 0.1.3: No Troubles At All
7+
8+
* Updated the codebase to Xcode 7.3 [#26](https://github.com/yopeso/Taylor/pull/26).
9+
[Alex Culeva](https://github.com/S2dentik)
10+
11+
* Slightly improved the performance (it was very fast, now it's lightning fast).
12+
[Alex Culeva](https://github.com/S2dentik)
13+
14+
* When running make install, now it uses xcpretty if available.
15+
[Alex Culeva](https://github.com/S2dentik)
16+
17+
* Made Easter egg great again.
18+
[Alex Culeva](https://github.com/S2dentik)
19+
20+
* Now it prints running time with two decimal places.
21+
[Andrei Raifura](https://github.com/thelvis4)
22+
23+
* Slightly changed rules warning messages.
24+
[Alex Culeva](https://github.com/S2dentik)
25+
126
## 0.1.2: Taylor gets smarter
227

328
* Fixed the bug when closure parameters were recognized as simple parameters
@@ -27,7 +52,6 @@
2752
* Prepared Makefile for Homebrew integration.
2853
[Andrei Raifura](https://github.com/thelvis4)
2954

30-
3155
## 0.1.0: Brand New First Version
3256

3357
* Implemented `Finder` module.

Cartfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "S2dentik/SourceKitten" "master"
1+
github "yopeso/SourceKitten" "master"

Cartfile.private

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "Quick/Quick" ~> 0.9.3
2-
github "Quick/Nimble" ~> 4.1.0
1+
github "Quick/Quick" ~> 0.10
2+
github "Quick/Nimble" ~> 5.0

Cartfile.resolved

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github "Quick/Nimble" "v4.1.0"
2-
github "Quick/Quick" "v0.9.3"
3-
github "drmohundro/SWXMLHash" "2.5.1"
4-
github "behrang/YamlSwift" "eecbc9108c297f3faf946504b648b0a7368b0f4d"
5-
github "S2dentik/SourceKitten" "54b40f5c99c5100c9ba9a2506330f1b7f7ef1fbd"
1+
github "Quick/Nimble" "v5.1.1"
2+
github "Quick/Quick" "v0.10.0"
3+
github "drmohundro/SWXMLHash" "3.0.2"
4+
github "behrang/YamlSwift" "2.0.2"
5+
github "yopeso/SourceKitten" "83a7702deaf85a41c5acec616d0f9018875d5237"
Binary file not shown.

Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/CwlCatchBadInstruction.h

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

Carthage/Build/Mac/Nimble.framework/Versions/A/Headers/CwlCatchException.h

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

0 commit comments

Comments
 (0)