Skip to content

Commit 7f3f779

Browse files
committed
Fixing library.json to have the correct name. Also adding the "framing" keyword and updating the project version to 1.0.1.
1 parent 21081c3 commit 7f3f779

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
This document details the changes between each release.
44

5+
## [1.0.1]
6+
7+
### Added
8+
* Added "framing" to the list of keywords in `library.json`.
9+
10+
### Fixed
11+
* Corrected the project name in `library.json` to "SLIPStream".
12+
513
## [1.0.0]
614

715
Initial public release.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Readme for SLIPStream v1.0.0
1+
# Readme for SLIPStream v1.0.1
22

33
This is a library for sending and receiving SLIP using any object that
44
implements `Stream`. It implements

library.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "TeensyDMX",
2+
"name": "SLIPStream",
33
"description": "A SLIP library that decorates Stream objects. This implements RFC 1055.",
4-
"keywords": "slip",
4+
"keywords": "slip, framing",
55
"authors": {
66
"name": "Shawn Silverman",
77
"email": "[email protected]",
@@ -11,7 +11,7 @@
1111
"type": "git",
1212
"url": "https://github.com/ssilverman/SLIPStream"
1313
},
14-
"version": "1.0.0",
14+
"version": "1.0.1",
1515
"license": "BSD-3-Clause-Clear",
1616
"homepage": "https://github.com/ssilverman/SLIPStream",
1717
"frameworks": "arduino",

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=SLIPStream
2-
version=1.0.0
2+
version=1.0.1
33
author=Shawn Silverman <[email protected]>
44
maintainer=Shawn Silverman <[email protected]>
55
sentence=A decorator for Stream objects that sends and receives SLIP.

0 commit comments

Comments
 (0)