diff --git a/CHANGELOG.md b/CHANGELOG.md index 9505c61..b57b993 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ This document details the changes between each release. +## [1.0.1] + +### Added +* Added "framing" to the list of keywords in `library.json`. + +### Fixed +* Corrected the project name in `library.json` to "SLIPStream". + ## [1.0.0] Initial public release. diff --git a/README.md b/README.md index e5150cf..23e8343 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Readme for SLIPStream v1.0.0 +# Readme for SLIPStream v1.0.1 This is a library for sending and receiving SLIP using any object that implements `Stream`. It implements diff --git a/library.json b/library.json index e345204..7e4fa6f 100644 --- a/library.json +++ b/library.json @@ -1,7 +1,7 @@ { - "name": "TeensyDMX", + "name": "SLIPStream", "description": "A SLIP library that decorates Stream objects. This implements RFC 1055.", - "keywords": "slip", + "keywords": "slip, framing", "authors": { "name": "Shawn Silverman", "email": "shawn@pobox.com", @@ -11,7 +11,7 @@ "type": "git", "url": "https://github.com/ssilverman/SLIPStream" }, - "version": "1.0.0", + "version": "1.0.1", "license": "BSD-3-Clause-Clear", "homepage": "https://github.com/ssilverman/SLIPStream", "frameworks": "arduino", diff --git a/library.properties b/library.properties index 0c4a818..83940a3 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=SLIPStream -version=1.0.0 +version=1.0.1 author=Shawn Silverman maintainer=Shawn Silverman sentence=A decorator for Stream objects that sends and receives SLIP.