Skip to content

Commit bb17cf6

Browse files
committed
Updating to 9.0.0.
1 parent 7b6b3f3 commit bb17cf6

18 files changed

Lines changed: 1329 additions & 1746 deletions

File tree

‎CHANGELOG.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# OHHTTPStubs — CHANGELOG
22

33

4-
## [8.1.0](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/8.1.0)
4+
## [9.0.0](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/9.0.0)
55

6-
* Added support for Swift Package Manager and an example project.
6+
* Added support for Swift Package Manager and dropped OH from all class names.
77
[@jeffctown](https://github.com/jeffctown)
88

99

‎Examples/ObjC/Podfile.lock‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
PODS:
2-
- OHHTTPStubs (8.1.0):
3-
- OHHTTPStubs/Default (= 8.1.0)
4-
- OHHTTPStubs/Core (8.1.0)
5-
- OHHTTPStubs/Default (8.1.0):
2+
- OHHTTPStubs (9.0.0):
3+
- OHHTTPStubs/Default (= 9.0.0)
4+
- OHHTTPStubs/Core (9.0.0)
5+
- OHHTTPStubs/Default (9.0.0):
66
- OHHTTPStubs/Core
77
- OHHTTPStubs/JSON
88
- OHHTTPStubs/NSURLSession
99
- OHHTTPStubs/OHPathHelpers
10-
- OHHTTPStubs/JSON (8.1.0):
10+
- OHHTTPStubs/JSON (9.0.0):
1111
- OHHTTPStubs/Core
12-
- OHHTTPStubs/NSURLSession (8.1.0):
12+
- OHHTTPStubs/NSURLSession (9.0.0):
1313
- OHHTTPStubs/Core
14-
- OHHTTPStubs/OHPathHelpers (8.1.0)
14+
- OHHTTPStubs/OHPathHelpers (9.0.0)
1515

1616
DEPENDENCIES:
1717
- OHHTTPStubs (from `../..`)
@@ -21,7 +21,7 @@ EXTERNAL SOURCES:
2121
:path: "../.."
2222

2323
SPEC CHECKSUMS:
24-
OHHTTPStubs: 7768732fc1bd4dda5844633292ac3ac2bf5382f7
24+
OHHTTPStubs: cb29d2a9d09a828ecb93349a2b0c64f99e0db89f
2525

2626
PODFILE CHECKSUM: 9a67077a86911aa4a252748903da3d5ea5d5d922
2727

‎Examples/ObjC/Pods/Local Podspecs/OHHTTPStubs.podspec.json‎

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Examples/ObjC/Pods/Manifest.lock‎

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Examples/Swift/Podfile.lock‎

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
PODS:
2-
- OHHTTPStubs (8.1.0):
3-
- OHHTTPStubs/Default (= 8.1.0)
4-
- OHHTTPStubs/Core (8.1.0)
5-
- OHHTTPStubs/Default (8.1.0):
2+
- OHHTTPStubs (9.0.0):
3+
- OHHTTPStubs/Default (= 9.0.0)
4+
- OHHTTPStubs/Core (9.0.0)
5+
- OHHTTPStubs/Default (9.0.0):
66
- OHHTTPStubs/Core
77
- OHHTTPStubs/JSON
88
- OHHTTPStubs/NSURLSession
99
- OHHTTPStubs/OHPathHelpers
10-
- OHHTTPStubs/JSON (8.1.0):
10+
- OHHTTPStubs/JSON (9.0.0):
1111
- OHHTTPStubs/Core
12-
- OHHTTPStubs/NSURLSession (8.1.0):
12+
- OHHTTPStubs/NSURLSession (9.0.0):
1313
- OHHTTPStubs/Core
14-
- OHHTTPStubs/OHPathHelpers (8.1.0)
15-
- OHHTTPStubs/Swift (8.1.0):
14+
- OHHTTPStubs/OHPathHelpers (9.0.0)
15+
- OHHTTPStubs/Swift (9.0.0):
1616
- OHHTTPStubs/Default
1717

1818
DEPENDENCIES:
@@ -24,7 +24,7 @@ EXTERNAL SOURCES:
2424
:path: "../.."
2525

2626
SPEC CHECKSUMS:
27-
OHHTTPStubs: 7768732fc1bd4dda5844633292ac3ac2bf5382f7
27+
OHHTTPStubs: cb29d2a9d09a828ecb93349a2b0c64f99e0db89f
2828

2929
PODFILE CHECKSUM: 7da7c441ea9ff6f06b633c908b7a7294805f5602
3030

‎Examples/Swift/Pods/Local Podspecs/OHHTTPStubs.podspec.json‎

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Examples/Swift/Pods/Manifest.lock‎

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Examples/Swift/Pods/Target Support Files/OHHTTPStubs/OHHTTPStubs-Info.plist‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎OHHTTPStubs.podspec‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "OHHTTPStubs"
4-
s.version = "8.1.0"
4+
s.version = "9.0.0"
55

66
s.summary = "Framework to stub your network requests like HTTP and help you write network unit tests with XCTest."
77
s.description = <<-DESC.gsub(/^ +\|/,'')
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module OHHTTPStubs {
2+
umbrella "/Users/jeff/OHHTTPStubs/Sources/OHHTTPStubs/include"
3+
export *
4+
}

0 commit comments

Comments
 (0)