Skip to content

Commit

Permalink
Version update to 4.4.0 (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
rynecheow authored and freak4pc committed Mar 28, 2019
1 parent c8755ef commit 47e5be9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ All notable changes to this project will be documented in this file.

#### Fixed

## 5.0.0
## 4.4.0

#### Updated
* Example project now compatible with Swift 5.0.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ A basic usage is (considering a simple currency converter):

```swift
let formatter = NSNumberFormatter()
formatter.numberStyle = .CurrencyStyle
formatter.numberStyle = .currencyStyle
formatter.currencyCode = "USD"
if let fromValue = NSNumberFormatter().numberFromString(self.fromTextField.text!) {

Expand Down Expand Up @@ -172,7 +172,7 @@ pod 'RxAlamofire'
Add following to `Cartfile`:

```
github "RxSwiftCommunity/RxAlamofire" "master"
github "RxSwiftCommunity/RxAlamofire" ~> 4.4
```

### Swift Package manager
Expand All @@ -189,7 +189,7 @@ let package = Package(
dependencies: [
.package(url: "https://github.com/RxSwiftCommunity/RxAlamofire.git",
from: "5.0.0"),
from: "4.4.0"),
],
targets: [
Expand Down
2 changes: 1 addition & 1 deletion RxAlamofire.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "RxAlamofire"

s.version = "5.0.0"
s.version = "4.4.0"
s.license = "MIT"
s.summary = "RxSwift wrapper around the elegant HTTP networking in Swift Alamofire"
s.homepage = "https://github.com/RxSwiftCommunity/RxAlamofire"
Expand Down

0 comments on commit 47e5be9

Please sign in to comment.