Skip to content

Commit 486e054

Browse files
committed
text(CHANGELOG): version bump to 0.8
1 parent 08b298c commit 486e054

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## [0.8] -- 2024-03-30
44

55
### Added
66

@@ -16,7 +16,7 @@
1616
### Fixed
1717

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

2121
## [0.7.1] - 2023-03-04
2222

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Samba at some time in the future.
3737

3838
# Requirements
3939

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

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

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

193193
* `-s`, `--shortlog`
194194

man/wsdd.8

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ This option also accepts IP addresses that the service should bind to.
5252
For IPv6, only link local addresses are actually considered as noted above.
5353
.TP
5454
\fB\-\-metadata-timeout\ \fITIMEOUT\fR
55-
Set the timeout for HTTP-based metadate exchange. Default is 2.0 seconds.
55+
Set the timeout for HTTP-based metadata exchange. Default is 2.0 seconds.
5656
.TP
5757
\fB\-s\fR, \fB\-\-shortlog\fR
5858
Use a shorter logging format that only includes the level and message.

src/wsdd.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# see http://specs.xmlsoap.org/ws/2005/04/discovery/ws-discovery.pdf and
1010
# related documents for details (look at README for more references)
1111
#
12-
# (c) Steffen Christgau, 2017-2021
12+
# (c) Steffen Christgau, 2017-2024
1313

1414
import sys
1515
import signal
@@ -44,7 +44,7 @@
4444
from xml.etree.ElementTree import fromstring as ETfromString
4545

4646

47-
WSDD_VERSION: str = '0.7.1'
47+
WSDD_VERSION: str = '0.8'
4848

4949

5050
args: argparse.Namespace

0 commit comments

Comments
 (0)