Skip to content

Commit 4a2222d

Browse files
author
Adrian McEwen
committed
Changes so this can be added to the Arduino 1.5+ library manager
1 parent 4bb288d commit 4a2222d

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

HttpClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#endif
1010

1111
// Initialize constants
12-
const char* HttpClient::kUserAgent = "Arduino/2.1";
12+
const char* HttpClient::kUserAgent = "Arduino/2.2.0";
1313
const char* HttpClient::kContentLengthPrefix = HTTP_HEADER_CONTENT_LENGTH ": ";
1414

1515
#ifdef PROXY_ENABLED // currently disabled as introduces dependency on Dns.h in Ethernet

library.properties

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name=HttpClient
2+
version=2.2.0
3+
author=Adrian McEwen <[email protected]>
4+
maintainer=Adrian McEwen <[email protected]>
5+
sentence=Library to easily make HTTP GET, POST and PUT requests to a web server.
6+
paragraph=Works with any class derived from Client - so switching between Ethernet, WiFi and GSMClient requires minimal code changes.
7+
category=Communication
8+
url=http://github.com/amcewen/HttpClient
9+
architectures=*

0 commit comments

Comments
 (0)