Skip to content

Commit d38ba51

Browse files
committed
Update author and URLs.
1 parent 16b12cc commit d38ba51

File tree

4 files changed

+25
-20
lines changed

4 files changed

+25
-20
lines changed

CHANGELOG.md

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased]
44

5+
## [0.13.1] - 2020-09-23
6+
### Changed
7+
- Update author and URLs.
8+
59
## [0.13.0] - 2020-09-16
610
### Changed
711
- Now using 2018 edition of Rust.
@@ -49,16 +53,17 @@
4953

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

54-
[Unreleased]: https://github.com/mozilla-iot/webthing-rust/compare/v0.13.0...HEAD
55-
[0.13.0]: https://github.com/mozilla-iot/webthing-rust/compare/v0.12.3...v0.13.0
56-
[0.12.3]: https://github.com/mozilla-iot/webthing-rust/compare/v0.12.2...v0.12.3
57-
[0.12.2]: https://github.com/mozilla-iot/webthing-rust/compare/v0.12.1...v0.12.2
58-
[0.12.1]: https://github.com/mozilla-iot/webthing-rust/compare/v0.12.0...v0.12.1
59-
[0.12.0]: https://github.com/mozilla-iot/webthing-rust/compare/v0.11.0...v0.12.0
60-
[0.11.0]: https://github.com/mozilla-iot/webthing-rust/compare/v0.10.3...v0.11.0
61-
[0.10.3]: https://github.com/mozilla-iot/webthing-rust/compare/v0.10.2...v0.10.3
62-
[0.10.2]: https://github.com/mozilla-iot/webthing-rust/compare/v0.10.1...v0.10.2
63-
[0.10.1]: https://github.com/mozilla-iot/webthing-rust/compare/v0.10.0...v0.10.1
64-
[0.10.0]: https://github.com/mozilla-iot/webthing-rust/compare/v0.9.3...v0.10.0
58+
[Unreleased]: https://github.com/WebThingsIO/webthing-rust/compare/v0.13.1...HEAD
59+
[0.13.0]: https://github.com/WebThingsIO/webthing-rust/compare/v0.13.0...v0.13.1
60+
[0.13.0]: https://github.com/WebThingsIO/webthing-rust/compare/v0.12.3...v0.13.0
61+
[0.12.3]: https://github.com/WebThingsIO/webthing-rust/compare/v0.12.2...v0.12.3
62+
[0.12.2]: https://github.com/WebThingsIO/webthing-rust/compare/v0.12.1...v0.12.2
63+
[0.12.1]: https://github.com/WebThingsIO/webthing-rust/compare/v0.12.0...v0.12.1
64+
[0.12.0]: https://github.com/WebThingsIO/webthing-rust/compare/v0.11.0...v0.12.0
65+
[0.11.0]: https://github.com/WebThingsIO/webthing-rust/compare/v0.10.3...v0.11.0
66+
[0.10.3]: https://github.com/WebThingsIO/webthing-rust/compare/v0.10.2...v0.10.3
67+
[0.10.2]: https://github.com/WebThingsIO/webthing-rust/compare/v0.10.1...v0.10.2
68+
[0.10.1]: https://github.com/WebThingsIO/webthing-rust/compare/v0.10.0...v0.10.1
69+
[0.10.0]: https://github.com/WebThingsIO/webthing-rust/compare/v0.9.3...v0.10.0

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "webthing"
3-
version = "0.13.0"
4-
authors = ["Mozilla IoT <iot@mozilla.com>"]
5-
repository = "https://github.com/mozilla-iot/webthing-rust"
6-
homepage = "https://github.com/mozilla-iot/webthing-rust"
3+
version = "0.13.1"
4+
authors = ["WebThingsIO <team@webthings.io>"]
5+
repository = "https://github.com/WebThingsIO/webthing-rust"
6+
homepage = "https://github.com/WebThingsIO/webthing-rust"
77
license = "MPL-2.0"
88
readme = "README.md"
99
description = "Implementation of an HTTP Web Thing."

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# webthing
22

3-
[![Build Status](https://github.com/mozilla-iot/webthing-rust/workflows/Rust%20package/badge.svg)](https://github.com/mozilla-iot/webthing-rust/workflows/Rust%20package)
3+
[![Build Status](https://github.com/WebThingsIO/webthing-rust/workflows/Rust%20package/badge.svg)](https://github.com/WebThingsIO/webthing-rust/workflows/Rust%20package)
44
[![Crates.io](https://img.shields.io/crates/v/webthing.svg)](https://crates.io/crates/webthing)
55
[![license](https://img.shields.io/badge/license-MPL--2.0-blue.svg)](LICENSE)
66

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

2222
# Example
2323

24-
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).
24+
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).
2525

2626
## Dimmable Light
2727

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

196196
# Adding to Gateway
197197

198-
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).
198+
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).

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cargo build --features ssl
66

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

0 commit comments

Comments
 (0)