Skip to content

Commit 32c9588

Browse files
committed
updatd library.json: was not valid to publish
1 parent 038b96f commit 32c9588

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ framework = arduino
1212
lib_deps = https://github.com/yapiolibs/hamlib-rotctl-easycomm-parser.git
1313
```
1414

15-
[**Parse a single command:**](./test/src/example-parse-command.cpp)
15+
[**Parse a single command:**](https://github.com/yapiolibs/hamlib-rotctl-easycomm-parser/blob/main/test/src/example-parse-command.cpp)
1616
```c
1717
#include <easycomm-parser.h>
1818

@@ -30,7 +30,7 @@ void loop()
3030
}
3131
```
3232

33-
[**Parse with callback:**](./test/src/example-parse-with-callback.cpp)
33+
[**Parse with callback:**](https://github.com/yapiolibs/hamlib-rotctl-easycomm-parser/blob/main/test/src/example-parse-with-callback.cpp)
3434
```c
3535
#include "example-parse-with-callback.h"
3636
#include <easycomm-command-callback-handler.h>
@@ -64,12 +64,12 @@ void loop()
6464
}
6565
```
6666
67-
**Parse from stream:** [see full example](./test/src/example-parse-stream.cpp).
67+
**Parse from stream:** [see full example](https://github.com/yapiolibs/hamlib-rotctl-easycomm-parser/blob/main/test/src/example-parse-stream.cpp).
6868
6969
**More examples:**
7070
71-
* [native-integration-test-program.cpp](./test/src/native-integration-test-program.cpp)
72-
* [unit tests](./test/test/)
71+
* [native-integration-test-program.cpp](https://github.com/yapiolibs/hamlib-rotctl-easycomm-parser/blob/main/test/src/native-integration-test-program.cpp)
72+
* [unit tests](https://github.com/yapiolibs/hamlib-rotctl-easycomm-parser/blob/main/test/test/)
7373
7474
**References:**
7575

library.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"maintainer": "true"
1414
}],
1515
"license": "Apache-2.0",
16-
"version": "0.1",
16+
"version": "0.1.0",
1717
"frameworks": ["native", "arduino"],
1818
"platforms": ["native", "atmelavr", "ststm32", "espressiv8266", "espressif32"],
1919
"headers": [
@@ -33,36 +33,36 @@
3333
"name": "Parse a single command",
3434
"base": "test/src/",
3535
"files": [
36-
"platformio.ini",
37-
"example-parse-command.h",
38-
"example-parse-command.cpp"
36+
"../platformio.ini",
37+
"./example-parse-command.h",
38+
"./example-parse-command.cpp"
3939
]
4040
},
4141
{
4242
"name": "Parse a command with callback",
4343
"base": "test/src/",
4444
"files": [
45-
"platformio.ini",
46-
"example-parse-with-callback.h",
47-
"example-parse-with-callback.cpp"
45+
"../platformio.ini",
46+
"./example-parse-with-callback.h",
47+
"./example-parse-with-callback.cpp"
4848
]
4949
},
5050
{
5151
"name": "Parse data from stream",
5252
"base": "test/src/",
5353
"files": [
54-
"platformio.ini",
55-
"example-parse-stream.h",
56-
"example-parse-stream.cpp"
54+
"../platformio.ini",
55+
"./example-parse-stream.h",
56+
"./example-parse-stream.cpp"
5757
]
5858
},
5959
{
6060
"name": "Parse from stream and reply - native integration test program",
6161
"base": "test/src/",
6262
"files": [
63-
"platformio.ini",
64-
"native-integration-test-program.h",
65-
"native-integration-test-program.cpp"
63+
"../platformio.ini",
64+
"./native-integration-test-program.h",
65+
"./native-integration-test-program.cpp"
6666
]
6767
}
6868
],

0 commit comments

Comments
 (0)