Skip to content

Commit c6bfcca

Browse files
authored
Merge pull request #1 from RobTillaart/develop
fix library.json
2 parents 065f4da + 2059711 commit c6bfcca

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

MultiMap.h

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,22 @@
22
//
33
// FILE: multimap.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 0.1.1
5+
// VERSION: 0.1.2
6+
// DATE: 2011-01-26
67
// PURPOSE: Arduino library for fast non-linear mapping or interpolation of values
78
// URL: https://github.com/RobTillaart/MultiMap
89
// URL: http://playground.arduino.cc/Main/MultiMap
910
//
10-
// HISTORY: see playground article
11+
// HISTORY:
12+
// 0.0.1 2011-01-26 initial version (see forum)
13+
// .....
14+
// 0.1.0 2015-03-29
15+
// 0.1.1 2020-04-09
16+
// 0.1.2 2020-06-19 fix library.json
17+
//
1118
//
1219

13-
#define MULTIMAP_LIB_VERSION "0.1.1"
20+
#define MULTIMAP_LIB_VERSION "0.1.2"
1421

1522
#include <Arduino.h>
1623

library.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@
1515
"type": "git",
1616
"url": "https://github.com/RobTillaart/MultiMap.git"
1717
},
18-
"version":"0.1.1",
18+
"version":"0.1.2",
1919
"frameworks": "arduino",
20-
"platforms": "*",
21-
"export": {
22-
"include": "MultiMap"
23-
}
20+
"platforms": "*"
2421
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=MultiMap
2-
version=0.1.1
2+
version=0.1.2
33
author=Rob Tillaart <rob.tillaart@gmail.com>
44
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
55
sentence=Library for fast non-linear interpolation by means of two arrays.

0 commit comments

Comments
 (0)