Skip to content

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rnijveld committed Dec 13, 2024
1 parent 32235c7 commit 383c5c6
Show file tree
Hide file tree
Showing 12 changed files with 149 additions and 47 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [1.4.0] - 2024-12-13

### Added
- Support for GPS based sources via a GPSd socket
- Added a setting to allow disabling of colors in our logs (`observability.ansi-colors`)

### Changed
- Fallback to V4 should V5 not work for some reason (if NTPv5 is enabled)
- Make the NTP version of a source configurable
- We now support rustls from 0.21 and up, to allow compilation on more targets

### Fixed
- Force sync did not work when a single source was configured
- Fix incorrect indexing in decode of ReferenceIdRequest for NTPv5 messages

## [1.3.1] - 2024-11-28

### Changed
Expand Down Expand Up @@ -249,6 +264,7 @@ process.
- Fixed a bug in peer dispersion calculation which resulted in overly
pessimistic dispersion estimates.

[1.4.0]: https://github.com/pendulum-project/ntpd-rs/compare/v1.3.1...v1.4.0
[1.3.1]: https://github.com/pendulum-project/ntpd-rs/compare/v1.3.0...v1.3.1
[1.3.0]: https://github.com/pendulum-project/ntpd-rs/compare/v1.2.3...v1.3.0
[1.2.3]: https://github.com/pendulum-project/ntpd-rs/compare/v1.2.2...v1.2.3
Expand Down
37 changes: 15 additions & 22 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resolver = "2"

# Global settings for our crates
[workspace.package]
version = "1.3.1"
version = "1.4.0"
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/pendulum-project/ntpd-rs"
Expand Down Expand Up @@ -67,4 +67,4 @@ zeroize = "1.7"

# our own crates used as dependencies, same version as the workspace version
# NOTE: keep this part at the bottom of the file, do not change this line
ntp-proto = { version = "1.3.1", path = "./ntp-proto", default-features = false, features = ["__internal-api"] }
ntp-proto = { version = "1.4.0", path = "./ntp-proto", default-features = false, features = ["__internal-api"] }
2 changes: 1 addition & 1 deletion docs/man/ntp-ctl.8.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- ---
title: NTP-CTL(8) ntpd-rs 1.3.1 | ntpd-rs
title: NTP-CTL(8) ntpd-rs 1.4.0 | ntpd-rs
--- -->

# NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/ntp-daemon.8.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- ---
title: NTP-DAEMON(8) ntpd-rs 1.3.1 | ntpd-rs
title: NTP-DAEMON(8) ntpd-rs 1.4.0 | ntpd-rs
--- -->

# NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/ntp-metrics-exporter.8.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- ---
title: NTP-METRICS-EXPORTER(8) ntpd-rs 1.3.1 | ntpd-rs
title: NTP-METRICS-EXPORTER(8) ntpd-rs 1.4.0 | ntpd-rs
--- -->

# NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/ntp.toml.5.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- ---
title: NTP.TOML(5) ntpd-rs 1.3.1 | ntpd-rs
title: NTP.TOML(5) ntpd-rs 1.4.0 | ntpd-rs
--- -->

# NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/precompiled/man/ntp-ctl.8
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "NTP-CTL" "8" "" "ntpd-rs 1.3.1" "ntpd-rs"
.TH "NTP-CTL" "8" "" "ntpd-rs 1.4.0" "ntpd-rs"
.hy
.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion docs/precompiled/man/ntp-daemon.8
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "NTP-DAEMON" "8" "" "ntpd-rs 1.3.1" "ntpd-rs"
.TH "NTP-DAEMON" "8" "" "ntpd-rs 1.4.0" "ntpd-rs"
.hy
.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion docs/precompiled/man/ntp-metrics-exporter.8
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "NTP-METRICS-EXPORTER" "8" "" "ntpd-rs 1.3.1" "ntpd-rs"
.TH "NTP-METRICS-EXPORTER" "8" "" "ntpd-rs 1.4.0" "ntpd-rs"
.hy
.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion docs/precompiled/man/ntp.toml.5
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "NTP.TOML" "5" "" "ntpd-rs 1.3.1" "ntpd-rs"
.TH "NTP.TOML" "5" "" "ntpd-rs 1.4.0" "ntpd-rs"
.hy
.SH NAME
.PP
Expand Down
Loading

0 comments on commit 383c5c6

Please sign in to comment.