Skip to content

Commit a784ee3

Browse files
Merge pull request #42 from wordpress-mobile/fix/podspec-lint-warnings
Resolve podspec lint validation warnings
2 parents 3699e58 + a5d1098 commit a784ee3

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

WPXMLRPC/WPXMLRPCEncoder.h

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2222
// THE SOFTWARE.
2323

24-
#import <Foundation/Foundation.h>
24+
@import Foundation;
2525

2626
NS_ASSUME_NONNULL_BEGIN
2727

@@ -47,7 +47,7 @@ NS_ASSUME_NONNULL_BEGIN
4747
4848
@warning The response encoder is for testing purposes only, and hasn't been tested to implement a XML-RPC server
4949
50-
@param parameters an array containing the result parameters for the response
50+
@param params an array containing the result parameters for the response
5151
5252
@return The newly-initialized XML-RPC response
5353
*/
@@ -89,8 +89,6 @@ NS_ASSUME_NONNULL_BEGIN
8989
You should pass this to `[NSMutableRequest setHTTPBody:]`
9090
@warning This method is now deprecated you should use dataEncodedWithError:(NSError *)error;
9191
92-
@param error On input, a pointer to an error object. If an error occurs, this pointer is set to an actual error object containing the error information. You may specify nil for this parameter if you do not want the error information.
93-
9492
@return A NSData object with the encoded method and paramaters, nil if there was an error.
9593
*/
9694
@property (nonatomic, readonly, nullable) NSData * body DEPRECATED_ATTRIBUTE;

wpxmlrpc.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "wpxmlrpc"
3-
s.version = "0.8.3"
3+
s.version = "0.8.4"
44
s.summary = "Lightweight XML-RPC library."
55
s.homepage = "https://github.com/wordpress-mobile/wpxmlrpc"
66
s.license = { :type => 'MIT', :file => 'LICENSE.md' }

0 commit comments

Comments
 (0)