From 88e5a6b45c60a9d947221b31043fd59e9868b0ea Mon Sep 17 00:00:00 2001 From: Wen-Hao Lue Date: Fri, 15 Aug 2014 21:46:49 -0400 Subject: [PATCH] Update README and PodSpec for v0.4.0 --- PonyDebugger.podspec | 2 +- README.md | 15 ++++++++++++--- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/PonyDebugger.podspec b/PonyDebugger.podspec index 5305b6b..1bdc0aa 100644 --- a/PonyDebugger.podspec +++ b/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' diff --git a/README.md b/README.md index fc4d687..4ea20bb 100644 --- a/README.md +++ b/README.md @@ -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) @@ -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