Skip to content

Commit

Permalink
Update author and URLs.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrstegeman committed Sep 23, 2020
1 parent bcb6838 commit e0d9290
Show file tree
Hide file tree
Showing 5 changed files with 130 additions and 68 deletions.
28 changes: 19 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [Unreleased]

## [0.13.0] - 2020-09-23
### Changed
- Update author and URLs to indicate new project home.

## [0.12.3] - 2020-06-18
### Changed
- mDNS record now indicates TLS support.

## [0.12.2] - 2020-05-04
### Changed
- Invalid POST requests to action resources now generate an error status.
Expand Down Expand Up @@ -29,12 +37,14 @@

## [0.10.0] - 2018-11-30
### Changed
- Property, Action, and Event description now use `links` rather than `href`. - [Spec PR](https://github.com/mozilla-iot/wot/pull/119)

[Unreleased]: https://github.com/mozilla-iot/webthing-node/compare/v0.12.2...HEAD
[0.12.2]: https://github.com/mozilla-iot/webthing-node/compare/v0.12.1...v0.12.2
[0.12.1]: https://github.com/mozilla-iot/webthing-node/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/mozilla-iot/webthing-node/compare/v0.11.1...v0.12.0
[0.11.1]: https://github.com/mozilla-iot/webthing-node/compare/v0.11.0...v0.11.1
[0.11.0]: https://github.com/mozilla-iot/webthing-node/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/mozilla-iot/webthing-node/compare/v0.9.1...v0.10.0
- Property, Action, and Event description now use `links` rather than `href`. - [Spec PR](https://github.com/WebThingsIO/wot/pull/119)

[Unreleased]: https://github.com/WebThingsIO/webthing-node/compare/v0.13.0...HEAD
[0.13.0]: https://github.com/WebThingsIO/webthing-node/compare/v0.12.3...v0.13.0
[0.12.3]: https://github.com/WebThingsIO/webthing-node/compare/v0.12.2...v0.12.3
[0.12.2]: https://github.com/WebThingsIO/webthing-node/compare/v0.12.1...v0.12.2
[0.12.1]: https://github.com/WebThingsIO/webthing-node/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/WebThingsIO/webthing-node/compare/v0.11.1...v0.12.0
[0.11.1]: https://github.com/WebThingsIO/webthing-node/compare/v0.11.0...v0.11.1
[0.11.0]: https://github.com/WebThingsIO/webthing-node/compare/v0.10.0...v0.11.0
[0.10.0]: https://github.com/WebThingsIO/webthing-node/compare/v0.9.1...v0.10.0
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# webthing

[![Build Status](https://github.com/mozilla-iot/webthing-node/workflows/Node.js%20package/badge.svg)](https://github.com/mozilla-iot/webthing-node/workflows/Node.js%20package)
[![Build Status](https://github.com/WebThingsIO/webthing-node/workflows/Node.js%20package/badge.svg)](https://github.com/WebThingsIO/webthing-node/workflows/Node.js%20package)
[![NPM](https://img.shields.io/npm/v/webthing.svg)](https://www.npmjs.com/package/webthing)
[![license](https://img.shields.io/badge/license-MPL--2.0-blue.svg)](LICENSE)

Expand All @@ -16,7 +16,7 @@ $ npm install webthing

# Example

In this example we will set up a dimmable light and a humidity sensor (both using fake data, of course). Both working examples can be found in [here](https://github.com/mozilla-iot/webthing-node/tree/master/example).
In this example we will set up a dimmable light and a humidity sensor (both using fake data, of course). Both working examples can be found in [here](https://github.com/WebThingsIO/webthing-node/tree/master/example).

## Dimmable Light

Expand Down Expand Up @@ -141,7 +141,7 @@ This will update our `Value` object with the sensor readings via the `this.level

# Adding to Gateway

To add your web thing to the WebThings Gateway, install the "Web Thing" add-on and follow the instructions [here](https://github.com/mozilla-iot/thing-url-adapter#readme).
To add your web thing to the WebThings Gateway, install the "Web Thing" add-on and follow the instructions [here](https://github.com/WebThingsIO/thing-url-adapter#readme).

# Resources

Expand Down
145 changes: 99 additions & 46 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 8 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webthing",
"version": "0.12.3",
"version": "0.13.0",
"description": "HTTP Web Thing implementation",
"main": "webthing.js",
"scripts": {
Expand All @@ -12,31 +12,30 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-iot/webthing-node.git"
"url": "git+https://github.com/WebThingsIO/webthing-node.git"
},
"keywords": [
"mozilla",
"iot",
"web",
"thing",
"webthing"
],
"author": "Mozilla IoT",
"author": "WebThingsIO",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla-iot/webthing-node/issues"
"url": "https://github.com/WebThingsIO/webthing-node/issues"
},
"homepage": "https://github.com/mozilla-iot/webthing-node#readme",
"homepage": "https://github.com/WebThingsIO/webthing-node#readme",
"dependencies": {
"ajv": "^6.12.3",
"ajv": "^6.12.5",
"body-parser": "^1.19.0",
"dnssd": "^0.4.1",
"express": "^4.17.1",
"express-ws": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"uuid": "^8.2.0"
"eslint": "^7.9.0",
"uuid": "^8.3.0"
}
}
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash -e

# clone the webthing-tester
git clone https://github.com/mozilla-iot/webthing-tester
git clone https://github.com/WebThingsIO/webthing-tester
pip3 install --user -r webthing-tester/requirements.txt

export NODE_PATH=.
Expand Down

0 comments on commit e0d9290

Please sign in to comment.