Skip to content

Commit c7d0cc9

Browse files
committed
Bump Version to 4.5.0
1 parent d9be311 commit c7d0cc9

File tree

15 files changed

+75
-59
lines changed

15 files changed

+75
-59
lines changed

CHANGELOG.md

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

3+
## [4.5.0](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/4.5.0) — tvOS
4+
5+
* Added support for tvOS.
6+
[@tiagomartinho](https://github.com/tiagomartinho), [#134](https://github.com/AliSoftware/OHHTTPStubs/pull/134)
7+
38
## [4.4.0](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/4.4.0)
49

5-
* Fixed issue with Umbrella Headers ([#127](https://github.com/AliSoftware/OHHTTPStubs/issues/127), [#131](https://github.com/AliSoftware/OHHTTPStubs/pull/131))
6-
* Added methods for creating `OHHTTPStubsResponse`s from `NSURL`s that represent file system resources ([@MaxGabriel](https://github.com/MaxGabriel), [#129](https://github.com/AliSoftware/OHHTTPStubs/pull/129))
10+
* Fixed issue with Umbrella Headers.
11+
[#127](https://github.com/AliSoftware/OHHTTPStubs/issues/127), [#131](https://github.com/AliSoftware/OHHTTPStubs/pull/131)
12+
* Added methods for creating `OHHTTPStubsResponse`s from `NSURL`s that represent file system resources.
13+
[@MaxGabriel](https://github.com/MaxGabriel), [#129](https://github.com/AliSoftware/OHHTTPStubs/pull/129)
714
* Bumped Swift subspec compatibility to OSX 10.9 instead of 10.7.
815

916

@@ -16,29 +23,34 @@
1623
1724
## [4.2.1](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/4.2.1)
1825

19-
* Fix the Examples Xcode project + lib Podfile that were referencing old target names ([mikelupo](https://github.com/mikelupo), [#117](https://github.com/AliSoftware/OHHTTPStubs/pull/117))
20-
* Added two new constants for download speed: `OHHTTPStubsDownloadSpeed1KBPS` = 1kbps and `OHHTTPStubsDownloadSpeedSLOW` = 1.5 kpbs. ([mikelupo](https://github.com/mikelupo), [#114](https://github.com/AliSoftware/OHHTTPStubs/pull/114))
26+
* Fix the Examples Xcode project + lib Podfile that were referencing old target names
27+
[@mikelupo](https://github.com/mikelupo), [#117](https://github.com/AliSoftware/OHHTTPStubs/pull/117)
28+
* Added two new constants for download speed: `OHHTTPStubsDownloadSpeed1KBPS` = 1kbps and `OHHTTPStubsDownloadSpeedSLOW` = 1.5 kpbs.
29+
[@mikelupo](https://github.com/mikelupo), [#114](https://github.com/AliSoftware/OHHTTPStubs/pull/114)
2130

22-
## [4.2.0](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/4.2.0)
31+
## [4.2.0](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/4.2.0) — Splitting in subspecs
2332

24-
* Added support for stubs written in the [Mocktail](https://github.com/square/objc-mocktail) format ([@JinlianWang](https://github.com/JinlianWang), [#108](https://github.com/AliSoftware/OHHTTPStubs/pull/108))
2533
* The `OHHTTPStubs` spec has been splitted into **multiple subspecs**:
2634
* The default subspec (used when you simply use `pod 'OHHTTPStubs'` in your `Podfile`) contains the subspecs `Core`, `NSURLSession`, `JSON` & `OHPathHelpers` (so that it matches the features that most people use).
2735
* Other optional subspecs are `HTTPMessage` and `Mocktail` (which are opt-in because used by much less people). If you want to use them, you'll need to request them explicitly in your `Podfile` using `pod 'OHHTTPStubs/Mocktail` for example.
2836
* The iOS Unit Tests are now also run for the framework as well as for the static library, to ensure the tests pass in both contexts _(because frameworks sometimes introduce subtleties like when using `NSBundle`, so it's worth testing in that context too)_
37+
* Added support for stubs written in the [Mocktail](https://github.com/square/objc-mocktail) format.
38+
[@JinlianWang](https://github.com/JinlianWang), [#108](https://github.com/AliSoftware/OHHTTPStubs/pull/108)
2939

30-
## [4.1.0](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/4.1.0)
40+
## [4.1.0](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/4.1.0) — watchOS 2
3141

3242
* Added support for using `OHHTTPStubs` in watchOS 2.0 targets.
3343
* Improved compatibility macros (nullability annotations) — and tested against Xcode 7 beta 4.
3444

3545
## [4.0.2](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/4.0.2)
3646

37-
* Fix `OHResourceBundle` name mismatch between header and implementation ([@tibr](https://github.com/tibr), [#103](https://github.com/AliSoftware/OHHTTPStubs/pull/103))
47+
* Fix `OHResourceBundle` name mismatch between header and implementation.
48+
[@tibr](https://github.com/tibr), [#103](https://github.com/AliSoftware/OHHTTPStubs/pull/103)
3849

3950
## [4.0.1](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/4.0.1)
4051

41-
* Fix threading in `NSURLProtocol` subclass calling `NSURLProtocolClient` callbacks from wrong thread. ([@nsprogrammer](https://github.com/nsprogrammer), [#96](https://github.com/AliSoftware/OHHTTPStubs/pull/96))
52+
* Fix threading in `NSURLProtocol` subclass calling `NSURLProtocolClient` callbacks from wrong thread.
53+
[@nsprogrammer](https://github.com/nsprogrammer), [#96](https://github.com/AliSoftware/OHHTTPStubs/pull/96)
4254

4355
## [4.0.0](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/4.0.0) — Improvements for Swift
4456

@@ -49,13 +61,15 @@
4961

5062
## [3.1.12](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/3.1.12)
5163

52-
* Fixed issue with HTTP 300 return code (multiple-choice) that is not supposed to redirect. ([@tarbrain](https://github.com/tarbrain), [#92](https://github.com/AliSoftware/OHHTTPStubs/pull/92))
64+
* Fixed issue with HTTP 300 return code (multiple-choice) that is not supposed to redirect.
65+
[@tarbrain](https://github.com/tarbrain), [#92](https://github.com/AliSoftware/OHHTTPStubs/pull/92)
5366

5467
## [3.1.11](https://github.com/AliSoftware/OHHTTPStubs/releases/tag/3.1.11)
5568

5669
* Added [Carthage](https://github.com/Carthage/Carthage) support
5770
* Splitted the Xcode projects for more clarity (one dedicated to build the lib and run Unit Tests, and one for the Demo)
58-
* Got rid of the `git submodule` used for Unit Tests against [AFNetworking](https://github.com/AFNetworking/AFNetworking) — it is now imported using [CocoaPods](http://cocoapods.org) and only for the lib's Unit Tests targets ([@corinnekrych](https://github.com/corinnekrych), [#90](https://github.com/AliSoftware/OHHTTPStubs/pull/90))
71+
* Got rid of the `git submodule` used for Unit Tests against [AFNetworking](https://github.com/AFNetworking/AFNetworking) — it is now imported using [CocoaPods](http://cocoapods.org) and only for the lib's Unit Tests targets.
72+
[@corinnekrych](https://github.com/corinnekrych), [#90](https://github.com/AliSoftware/OHHTTPStubs/pull/90)
5973
* Improved [Travis-CI](https://travis-ci.org/AliSoftware/OHHTTPStubs) integration. We now use a build matrix to have paralellized and independant builds for each scheme (iOS Static Lib, iOS Dynamic Framework, OSX Framework)
6074
* Fixed [#80](https://github.com/AliSoftware/OHHTTPStubs/issues/80) again (there was still an issue for people using Xcode 5 & SDK 7.1… if those people still exists)
6175

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 (4.4.0):
3-
- OHHTTPStubs/Default (= 4.4.0)
4-
- OHHTTPStubs/Core (4.4.0)
5-
- OHHTTPStubs/Default (4.4.0):
2+
- OHHTTPStubs (4.5.0):
3+
- OHHTTPStubs/Default (= 4.5.0)
4+
- OHHTTPStubs/Core (4.5.0)
5+
- OHHTTPStubs/Default (4.5.0):
66
- OHHTTPStubs/Core
77
- OHHTTPStubs/JSON
88
- OHHTTPStubs/NSURLSession
99
- OHHTTPStubs/OHPathHelpers
10-
- OHHTTPStubs/JSON (4.4.0):
10+
- OHHTTPStubs/JSON (4.5.0):
1111
- OHHTTPStubs/Core
12-
- OHHTTPStubs/NSURLSession (4.4.0):
12+
- OHHTTPStubs/NSURLSession (4.5.0):
1313
- OHHTTPStubs/Core
14-
- OHHTTPStubs/OHPathHelpers (4.4.0)
14+
- OHHTTPStubs/OHPathHelpers (4.5.0)
1515

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

2323
SPEC CHECKSUMS:
24-
OHHTTPStubs: 1a95a653b78287a1fdb44eb38364b43257ac3550
24+
OHHTTPStubs: e573e76dd8bcd7ee5fcc6c3d86251551f4261e0c
2525

2626
COCOAPODS: 0.39.0

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

Lines changed: 4 additions & 3 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/ObjC/Pods/Pods.xcodeproj/xcshareddata/xcschemes/OHHTTPStubs.xcscheme

Lines changed: 1 addition & 1 deletion
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 (4.4.0):
3-
- OHHTTPStubs/Default (= 4.4.0)
4-
- OHHTTPStubs/Core (4.4.0)
5-
- OHHTTPStubs/Default (4.4.0):
2+
- OHHTTPStubs (4.5.0):
3+
- OHHTTPStubs/Default (= 4.5.0)
4+
- OHHTTPStubs/Core (4.5.0)
5+
- OHHTTPStubs/Default (4.5.0):
66
- OHHTTPStubs/Core
77
- OHHTTPStubs/JSON
88
- OHHTTPStubs/NSURLSession
99
- OHHTTPStubs/OHPathHelpers
10-
- OHHTTPStubs/JSON (4.4.0):
10+
- OHHTTPStubs/JSON (4.5.0):
1111
- OHHTTPStubs/Core
12-
- OHHTTPStubs/NSURLSession (4.4.0):
12+
- OHHTTPStubs/NSURLSession (4.5.0):
1313
- OHHTTPStubs/Core
14-
- OHHTTPStubs/OHPathHelpers (4.4.0)
15-
- OHHTTPStubs/Swift (4.4.0):
14+
- OHHTTPStubs/OHPathHelpers (4.5.0)
15+
- OHHTTPStubs/Swift (4.5.0):
1616
- OHHTTPStubs/Core
1717

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

2626
SPEC CHECKSUMS:
27-
OHHTTPStubs: 1a95a653b78287a1fdb44eb38364b43257ac3550
27+
OHHTTPStubs: e573e76dd8bcd7ee5fcc6c3d86251551f4261e0c
2828

2929
COCOAPODS: 0.39.0

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

Lines changed: 4 additions & 3 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/Pods.xcodeproj/xcshareddata/xcschemes/OHHTTPStubs.xcscheme

Lines changed: 1 addition & 1 deletion
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/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.

0 commit comments

Comments
 (0)