From 4739ca080263d8fb5d278144a3244de9d1ab11d1 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Sun, 31 Jan 2016 20:53:05 +0000 Subject: [PATCH] Update library files closes #44 --- library.json | 17 +++++++++++++++++ library.properties | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 00000000..e057f02d --- /dev/null +++ b/library.json @@ -0,0 +1,17 @@ +{ + "name": "PubSubClient", + "keywords": "ethernet, mqtt, m2m, iot", + "description": "A client library for MQTT messaging. MQTT is a lightweight messaging protocol ideal for small devices. This library allows you to send and receive MQTT messages. It supports the latest MQTT 3.1.1 protocol and can be configured to use the older MQTT 3.1 if needed. It supports all Arduino Ethernet Client compatible hardware, including the Intel Galileo/Edison, ESP8266 and TI CC3000.", + "repository": { + "type": "git", + "url": "https://github.com/knolleary/pubsubclient.git" + }, + "version": "2.5", + "exclude": "tests", + "examples": "examples/*/*.ino", + "frameworks": "arduino", + "platforms": [ + "atmelavr", + "espressif" + ] +} diff --git a/library.properties b/library.properties index ab1b6d29..fc673cd9 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=PubSubClient -version=2.4 +version=2.5 author=Nick O'Leary maintainer=Nick O'Leary sentence=A client library for MQTT messaging.