Skip to content

Commit

Permalink
Release 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
farmio committed Jan 18, 2022
1 parent 4ac2bb2 commit 30395b3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 29 deletions.
4 changes: 2 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased changes
## 0.19.0 Tunneling connection protocol 2022-01-18

### Devices

Expand All @@ -19,7 +19,7 @@
- Some refactoring and code movement in the io module - especially in KNXIPInterface; renamed UDPClient to UDPTransport
- Cleanup some list generating code in the knxip module

## 0.18.15 Come back almighty Gateway Scanner
## 0.18.15 Come back almighty Gateway Scanner 2021-12-22

### Internals

Expand Down
26 changes: 0 additions & 26 deletions docs/xknx.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,29 +165,3 @@ async def main():

asyncio.run(main())
```

# [](#header-2)Dockerised xknx's app

To run xknx from a container, set 'route_back=true' or use host network mode.

Available env variables are:

- XKNX_GENERAL_OWN_ADDRESS
- XKNX_GENERAL_RATE_LIMIT
- XKNX_GENERAL_MULTICAST_GROUP
- XKNX_GENERAL_MULTICAST_PORT
- XKNX_CONNECTION_GATEWAY_IP: Your KNX Gateway IP address
- XKNX_CONNECTION_GATEWAY_PORT: Your KNX Gateway UDP port
- XKNX_CONNECTION_LOCAL_IP
- XKNX_CONNECTION_ROUTE_BACK: Set 'true' to be able to work in a container

Example of a `docker run` with an xknx based app:

```bash
docker run --name myapp -d \
-e XKNX_CONNECTION_GATEWAY_IP='192.168.0.123' \
-e XKNX_CONNECTION_LOCAL_PORT=12399 \
-e XKNX_CONNECTION_ROUTE_BACK=true \
-p 12300:12399/udp \
myapp:latest
```
2 changes: 1 addition & 1 deletion xknx/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""XKNX version."""

__version__ = "0.18.16.dev"
__version__ = "0.19.0"

0 comments on commit 30395b3

Please sign in to comment.