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 16b12cc commit d38ba51
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 20 deletions.
29 changes: 17 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [0.13.1] - 2020-09-23
### Changed
- Update author and URLs.

## [0.13.0] - 2020-09-16
### Changed
- Now using 2018 edition of Rust.
Expand Down Expand Up @@ -49,16 +53,17 @@

## [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)
- Property, Action, and Event description now use `links` rather than `href`. - [Spec PR](https://github.com/WebThingsIO/wot/pull/119)

[Unreleased]: https://github.com/mozilla-iot/webthing-rust/compare/v0.13.0...HEAD
[0.13.0]: https://github.com/mozilla-iot/webthing-rust/compare/v0.12.3...v0.13.0
[0.12.3]: https://github.com/mozilla-iot/webthing-rust/compare/v0.12.2...v0.12.3
[0.12.2]: https://github.com/mozilla-iot/webthing-rust/compare/v0.12.1...v0.12.2
[0.12.1]: https://github.com/mozilla-iot/webthing-rust/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/mozilla-iot/webthing-rust/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/mozilla-iot/webthing-rust/compare/v0.10.3...v0.11.0
[0.10.3]: https://github.com/mozilla-iot/webthing-rust/compare/v0.10.2...v0.10.3
[0.10.2]: https://github.com/mozilla-iot/webthing-rust/compare/v0.10.1...v0.10.2
[0.10.1]: https://github.com/mozilla-iot/webthing-rust/compare/v0.10.0...v0.10.1
[0.10.0]: https://github.com/mozilla-iot/webthing-rust/compare/v0.9.3...v0.10.0
[Unreleased]: https://github.com/WebThingsIO/webthing-rust/compare/v0.13.1...HEAD
[0.13.0]: https://github.com/WebThingsIO/webthing-rust/compare/v0.13.0...v0.13.1
[0.13.0]: https://github.com/WebThingsIO/webthing-rust/compare/v0.12.3...v0.13.0
[0.12.3]: https://github.com/WebThingsIO/webthing-rust/compare/v0.12.2...v0.12.3
[0.12.2]: https://github.com/WebThingsIO/webthing-rust/compare/v0.12.1...v0.12.2
[0.12.1]: https://github.com/WebThingsIO/webthing-rust/compare/v0.12.0...v0.12.1
[0.12.0]: https://github.com/WebThingsIO/webthing-rust/compare/v0.11.0...v0.12.0
[0.11.0]: https://github.com/WebThingsIO/webthing-rust/compare/v0.10.3...v0.11.0
[0.10.3]: https://github.com/WebThingsIO/webthing-rust/compare/v0.10.2...v0.10.3
[0.10.2]: https://github.com/WebThingsIO/webthing-rust/compare/v0.10.1...v0.10.2
[0.10.1]: https://github.com/WebThingsIO/webthing-rust/compare/v0.10.0...v0.10.1
[0.10.0]: https://github.com/WebThingsIO/webthing-rust/compare/v0.9.3...v0.10.0
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "webthing"
version = "0.13.0"
authors = ["Mozilla IoT <[email protected]>"]
repository = "https://github.com/mozilla-iot/webthing-rust"
homepage = "https://github.com/mozilla-iot/webthing-rust"
version = "0.13.1"
authors = ["WebThingsIO <[email protected]>"]
repository = "https://github.com/WebThingsIO/webthing-rust"
homepage = "https://github.com/WebThingsIO/webthing-rust"
license = "MPL-2.0"
readme = "README.md"
description = "Implementation of an HTTP Web Thing."
Expand Down
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-rust/workflows/Rust%20package/badge.svg)](https://github.com/mozilla-iot/webthing-rust/workflows/Rust%20package)
[![Build Status](https://github.com/WebThingsIO/webthing-rust/workflows/Rust%20package/badge.svg)](https://github.com/WebThingsIO/webthing-rust/workflows/Rust%20package)
[![Crates.io](https://img.shields.io/crates/v/webthing.svg)](https://crates.io/crates/webthing)
[![license](https://img.shields.io/badge/license-MPL--2.0-blue.svg)](LICENSE)

Expand All @@ -21,7 +21,7 @@ If you need TLS support for the server, you'll need to compile with the `ssl` fe

# 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-rust/tree/master/examples).
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-rust/tree/master/examples).

## Dimmable Light

Expand Down Expand Up @@ -195,4 +195,4 @@ This will update our property with random sensor readings. The new property valu

# 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).
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cargo build --features ssl

# clone the webthing-tester
if [ ! -d webthing-tester ]; then
git clone https://github.com/mozilla-iot/webthing-tester
git clone https://github.com/WebThingsIO/webthing-tester
fi
pip3 install --user -r webthing-tester/requirements.txt

Expand Down

0 comments on commit d38ba51

Please sign in to comment.