Skip to content
This repository has been archived by the owner on Jul 12, 2019. It is now read-only.

Commit

Permalink
bump version. prep for 5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesquires committed Sep 8, 2016
1 parent 698c8db commit 492873c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ The changelog for `JSQWebViewController`. Also see the [releases](https://github

--------------------------------------

5.0.0
-----

**Swift 3.0 now required.**

4.0.0
-----

Expand Down
2 changes: 1 addition & 1 deletion JSQWebViewController.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'JSQWebViewController'
s.version = '4.0.0'
s.version = '5.0.0'
s.license = 'MIT'

s.summary = 'A lightweight Swift WebKit view controller for iOS'
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
      
![screenshot](https://github.com/jessesquires/JSQWebViewController/develop/Screenshots/screenshot_1.png)

> **NOTE:** As of iOS 9, this library is no longer necessary.
> **NOTE:** As of iOS 9, this library is no longer necessary.
>
> You should probably use [`SFSafariViewController`](https://developer.apple.com/library/prerelease/ios/documentation/SafariServices/Reference/SFSafariViewController_Ref/index.html) instead.
## Requirements

* iOS 8+
* Swift 2.2+
* Swift 3.0+

## Installation

Expand Down Expand Up @@ -46,9 +46,9 @@ Read the [docs][docsLink]. Generated with [jazzy](https://github.com/realm/jazzy
````swift
import JSQWebViewController

let controller = WebViewController(url: NSURL(string: "http://jessesquires.com")!)
let controller = WebViewController(url: URL(string: "http://jessesquires.com")!)
let nav = UINavigationController(rootViewController: controller)
presentViewController(nav, animated: true, completion: nil)
present(nav, animated: true, completion: nil)
````

See the included example app, open `JSQWebViewController.xcworkspace`.
Expand Down
2 changes: 1 addition & 1 deletion Source/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>4.0.0</string>
<string>5.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 492873c

Please sign in to comment.