Skip to content

Commit

Permalink
v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
n8henrie committed Mar 5, 2022
1 parent 3371d23 commit 8dda851
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,12 @@
Will not contain minor changes -- feel free to look through `git log` for
more detail.

## v0.6.0 :: 20220304

- Python 3.10
- Add optional `uvloop` support (https://github.com/n8henrie/fauxmo/issues/112)
- Add option to override `domain` to `homeassistantplugin.py` (https://github.com/n8henrie/fauxmo/issues/114)

## v0.5.1, v0.5.2 :: 20210901

- Version bumps to upload new pyproject.toml format to PyPI
Expand Down
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -68,6 +68,12 @@ prior to installation: `pip install --upgrade pip`
[`config-sample.json`](https://github.com/n8henrie/fauxmo/blob/master/config-sample.json)
1. `fauxmo -c config.json [-v]`

As of `v0.6.0`, you can *optionally* install `uvloop` for potentially better
performance, which *might* be helpful if you have a large number of devices or
a network with lots of broadcast mdns traffic. If it is present, `fauxmo` will
take advantage. It is not terribly difficult to install `uvloop` but you are on
your own: <https://github.com/MagicStack/uvloop>.

### Simple install of dev branch from GitHub

This is a good strategy for testing features in development -- for actually
Expand Down
2 changes: 1 addition & 1 deletion src/fauxmo/__init__.py
Expand Up @@ -5,7 +5,7 @@

__author__ = "Nathan Henrie"
__email__ = "nate@n8henrie.com"
__version__ = "v0.5.2"
__version__ = "v0.6.0"

logging.basicConfig(
level=logging.INFO,
Expand Down

0 comments on commit 8dda851

Please sign in to comment.