Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gobetti committed Jun 10, 2018
1 parent 5dacdd8 commit 3e3a27a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 9 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: objective-c
osx_image: xcode9.3
branches:
only:
- master
- develop
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/
cache:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# [0.2.0] - 2018-06-10
### Added
- `ProductionStub` enum, similar to `Stub` but not containing a `default` case

### Changed
- `TargetType` was split into 2 protocols, where `TargetType` is now a sub-protocol of `ProductionTargetType`
- `ProductionTargetType` does not require `sampleData` and uses `ProductionStub`

# [0.1.0] - 2018-06-03
### Added
- Support to "all" (?) HTTP methods (all methods included in HTTP/1.1 spec, section 4.3, plus PATCH)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!

pod 'RxCocoaNetworking', '~> 0.1.0'
pod 'RxCocoaNetworking', '~> 0.2.0'
```

Then, run the following command:
Expand All @@ -146,7 +146,7 @@ $ brew install carthage
To integrate RxCocoaNetworking into your Xcode project using Carthage, specify it in your `Cartfile`:

```ogdl
github "gobetti/RxCocoaNetworking" ~> 0.1.0
github "gobetti/RxCocoaNetworking" ~> 0.2.0
```

</details>
Expand All @@ -163,7 +163,7 @@ import PackageDescription
let package = Package(
name: "HelloRxCocoaNetworking",
dependencies: [
.package(url: "https://github.com/gobetti/RxCocoaNetworking.git", .upToNextMajor(from: "0.1.0"))
.package(url: "https://github.com/gobetti/RxCocoaNetworking.git", .upToNextMajor(from: "0.2.0"))
],
targets: [
.target(name: "HelloRxCocoaNetworking", dependencies: ["RxCocoaNetworking"])
Expand Down
2 changes: 1 addition & 1 deletion RxCocoaNetworking.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'RxCocoaNetworking'
s.version = '0.1.0'
s.version = '0.2.0'
s.license = { :type => "MIT", :file => "LICENSE" }
s.summary = 'A Moya-inspired, RxTest-testable networking framework built on top of RxCocoa'
s.homepage = 'https://github.com/gobetti/RxCocoaNetworking'
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<string>0.2.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<string>0.2.0</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Info-tvOS.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<string>0.2.0</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>UIRequiredDeviceCapabilities</key>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>0.1.0</string>
<string>0.2.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
Expand Down

0 comments on commit 3e3a27a

Please sign in to comment.