Skip to content

Commit

Permalink
Version 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
szpajder committed Nov 14, 2022
1 parent 7a2151d commit 6cef4f9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# CHANGELOG

## Version 1.4.0 (2022-11-14)

- Added support for periodic noise floor reporting via Etsy StatsD. This
allows long-term noise floor monitoring and trending on all monitored
HFDL channels. Enable with `--noise-floor-stats-interval <interval_seconds>`
command line option (together with `--statsd address:port`, of course).
- Better handling of network errors when producing output to networked
outputs (TCP, UDP, ZMQ). When the message delivery fails, the message
now gets requeued and redelivered when the connection is reestablished.
- A few optimizations resulting in slightly lower CPU usage.

## Version 1.3.0 (2022-03-16)

- Added support for formatting decoded messages as JSON.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required (VERSION 3.1)
project (dumphfdl C)

set (DUMPHFDL_VERSION_MAJOR 1)
set (DUMPHFDL_VERSION_MINOR 3)
set (DUMPHFDL_VERSION_MINOR 4)
set (DUMPHFDL_VERSION_PATCH 0)
set (DUMPHFDL_VERSION "${DUMPHFDL_VERSION_MAJOR}.${DUMPHFDL_VERSION_MINOR}.${DUMPHFDL_VERSION_PATCH}")
set (CMAKE_C_STANDARD 11)
Expand Down

0 comments on commit 6cef4f9

Please sign in to comment.