Skip to content

Commit

Permalink
Merge pull request #123 from wlue/master
Browse files Browse the repository at this point in the history
Update README and PodSpec for v0.4.0
  • Loading branch information
wlue committed Aug 16, 2014
2 parents 62c952a + 88e5a6b commit b3c6b68
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion PonyDebugger.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'PonyDebugger'
s.version = '0.3.1'
s.version = '0.4.0'
s.summary = 'Remote network and data debugging for your native iOS app using Chrome Developer Tools.'
s.homepage = 'https://github.com/square/PonyDebugger'
s.description = 'PonyDebugger is a remote debugging toolset. It is a client library and gateway server combination that uses Chrome Developer Tools on your browser to debug your application\s network traffic et managed object contexts'
Expand Down
15 changes: 12 additions & 3 deletions README.md
Expand Up @@ -17,6 +17,15 @@ PonyDebugger is licensed under the Apache Licence, Version 2.0
Changes
-------

### v0.4.0 - 2014-08-15

- Support `NSURLSession` requests for the Network Debugger. (@viteinfinite)
- New test application that removes the AFNetworking dependency.
(@viteinfinite)
- Remove custom base64 implementation with Apple's built-in implementation.
(@kyleve)
- Add PodSpec for pulling the git repository directly. (@wlue)

### v0.3.1 - 2014-01-02

- Fix only building active arch in debug. (@kyleve)
Expand Down Expand Up @@ -53,9 +62,9 @@ PonyDebugger forwards network traffic, and does not sniff network traffic. This
means that traffic sent over a secure protocol (https) is debuggable.

Currently, the iOS client automatically proxies data that is sent via
`NSURLConnection`. This means that it will automatically work with
AFNetworking, and other libraries that use `NSURLConnection` for network
requests.
`NSURLConnection` and `NSURLSession` methods. This means that it will
automatically work with AFNetworking, and other libraries that use
`NSURLConnection` or `NSURLSession` for network requests.

### Core Data Browser

Expand Down

0 comments on commit b3c6b68

Please sign in to comment.