add 0.5.0 section to CHANGELOG

This commit is contained in:
onyx-and-iris 2025-06-14 09:05:34 +01:00
parent be65f41813
commit c0aad67199
2 changed files with 15 additions and 1 deletions

View File

@ -11,6 +11,20 @@ Before any major/minor/patch bump all unit tests will be run to verify they pass
- [x] - [x]
# [0.5.0] - 2025-06-25
### Added
- it's now possible to load configuration from environment variables. See [Environment Variables]()
- --version/-v command
### Changed
- shortname for --host flag is now -H.
- shortname for --channel flag is now -n.
- toml loader no longer requires a `[connection]` table. See [TOML Config]()
# [0.4.1] - 2025-04-05 # [0.4.1] - 2025-04-05
### Changed ### Changed

View File

@ -158,7 +158,7 @@ Acceptable values for this flag are:
For example, to set the log level to `debug`, you can use: For example, to set the log level to `debug`, you can use:
```console ```console
vbantxt "bus[0].eq.on=1 bus[1].gain=-12.8" vbantxt --loglevel=debug "bus[0].eq.on=1 bus[1].gain=-12.8"
``` ```
The default log level is `warn` if the flag is not specified. The default log level is `warn` if the flag is not specified.