Skip to content

Commit

Permalink
Switched to the new library layout
Browse files Browse the repository at this point in the history
  • Loading branch information
bblanchon committed May 31, 2015
1 parent 0aded2a commit 283dffc
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 41 deletions.
24 changes: 0 additions & 24 deletions ArduinoJson.cpp

This file was deleted.

13 changes: 0 additions & 13 deletions ArduinoJson.h

This file was deleted.

3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ v5.0 (currently under development)
----

* Added support of `String` class (issue #55, #56, #70, #77)
* Redesigned `JsonVariant` to leverage converting constructors instead of assignment operators.
* Redesigned `JsonVariant` to leverage converting constructors instead of assignment operators
* Switched to new library layout (requires Arduino 1.0.6 or above)

**BREAKING CHANGES**:
- `JsonObject::add()` was renamed to `set()`
Expand Down
8 changes: 8 additions & 0 deletions library.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name=ArduinoJson
version=5.0.0
author=Benoit Blanchon <blog.benoitblanchon.fr>
maintainer=Benoit Blanchon <blog.benoitblanchon.fr>
sentence=An efficient and elegant JSON library for Arduino.
paragraph=Like this project? Please star it on GitHub!
url=https://github.com/bblanchon/ArduinoJson
architectures=*
5 changes: 2 additions & 3 deletions scripts/build-arduino-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@ rm -f $OUTPUT
ArduinoJson/examples \
ArduinoJson/include \
ArduinoJson/keywords.txt \
ArduinoJson/library.properties \
ArduinoJson/LICENSE.md \
ArduinoJson/README.md \
ArduinoJson/src \
ArduinoJson/ArduinoJson.h \
ArduinoJson/ArduinoJson.cpp \
-x!ArduinoJson/src/CMakeLists.txt
-x!ArduinoJson/src/CMakeLists.txt
13 changes: 13 additions & 0 deletions src/ArduinoJson.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright Benoit Blanchon 2014-2015
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson

// About this file
// ---------------
// This file is here to please the Arduino IDE. It must be present in the src/
// for the IDE to find it. Feel free to ignore this file if your working in
// another environment

#include "../include/ArduinoJson.h"

0 comments on commit 283dffc

Please sign in to comment.