Skip to content

Commit

Permalink
text(CHANGELOG): version bump to 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
christgau committed Mar 30, 2024
1 parent 08b298c commit 486e054
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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
## [0.8] -- 2024-03-30

### Added

Expand All @@ -16,7 +16,7 @@
### Fixed

- Handle addresses with zone id by ignoring the interface part (#184)
- Do not crash with asyncio future when non-existing interface is provided (#201)
- Do not crash with asyncio future error when non-existing interface is provided (#201)

## [0.7.1] - 2023-03-04

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Samba at some time in the future.

# Requirements

wsdd requires Python 3.7 and later only. It runs on Linux, FreeBSD, OpenBSD and MacOS.
wsdd requires Python 3.7 and later only. It runs on Linux, FreeBSD, OpenBSD and MacOS.
Other Unixes, such as NetBSD, might work as well but were not tested.

Although Samba is not strictly required by wsdd itself, it makes sense to run
Expand Down Expand Up @@ -188,7 +188,7 @@ below for details.
details on the API.

* `--metadata-timeout TIMEOUT`
Set the timeout for HTTP-based metadate exchange. Default is 2.0 seconds.
Set the timeout for HTTP-based metadata exchange. Default is 2.0 seconds.

* `-s`, `--shortlog`

Expand Down
2 changes: 1 addition & 1 deletion man/wsdd.8
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ This option also accepts IP addresses that the service should bind to.
For IPv6, only link local addresses are actually considered as noted above.
.TP
\fB\-\-metadata-timeout\ \fITIMEOUT\fR
Set the timeout for HTTP-based metadate exchange. Default is 2.0 seconds.
Set the timeout for HTTP-based metadata exchange. Default is 2.0 seconds.
.TP
\fB\-s\fR, \fB\-\-shortlog\fR
Use a shorter logging format that only includes the level and message.
Expand Down
4 changes: 2 additions & 2 deletions src/wsdd.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# see http://specs.xmlsoap.org/ws/2005/04/discovery/ws-discovery.pdf and
# related documents for details (look at README for more references)
#
# (c) Steffen Christgau, 2017-2021
# (c) Steffen Christgau, 2017-2024

import sys
import signal
Expand Down Expand Up @@ -44,7 +44,7 @@
from xml.etree.ElementTree import fromstring as ETfromString


WSDD_VERSION: str = '0.7.1'
WSDD_VERSION: str = '0.8'


args: argparse.Namespace
Expand Down

0 comments on commit 486e054

Please sign in to comment.