Skip to content

Commit 383c5c6

Browse files
committed
Release 1.4.0
1 parent 32235c7 commit 383c5c6

12 files changed

+149
-47
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [1.4.0] - 2024-12-13
4+
5+
### Added
6+
- Support for GPS based sources via a GPSd socket
7+
- Added a setting to allow disabling of colors in our logs (`observability.ansi-colors`)
8+
9+
### Changed
10+
- Fallback to V4 should V5 not work for some reason (if NTPv5 is enabled)
11+
- Make the NTP version of a source configurable
12+
- We now support rustls from 0.21 and up, to allow compilation on more targets
13+
14+
### Fixed
15+
- Force sync did not work when a single source was configured
16+
- Fix incorrect indexing in decode of ReferenceIdRequest for NTPv5 messages
17+
318
## [1.3.1] - 2024-11-28
419

520
### Changed
@@ -249,6 +264,7 @@ process.
249264
- Fixed a bug in peer dispersion calculation which resulted in overly
250265
pessimistic dispersion estimates.
251266

267+
[1.4.0]: https://github.com/pendulum-project/ntpd-rs/compare/v1.3.1...v1.4.0
252268
[1.3.1]: https://github.com/pendulum-project/ntpd-rs/compare/v1.3.0...v1.3.1
253269
[1.3.0]: https://github.com/pendulum-project/ntpd-rs/compare/v1.2.3...v1.3.0
254270
[1.2.3]: https://github.com/pendulum-project/ntpd-rs/compare/v1.2.2...v1.2.3

Cargo.lock

Lines changed: 15 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ resolver = "2"
1212

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

6868
# our own crates used as dependencies, same version as the workspace version
6969
# NOTE: keep this part at the bottom of the file, do not change this line
70-
ntp-proto = { version = "1.3.1", path = "./ntp-proto", default-features = false, features = ["__internal-api"] }
70+
ntp-proto = { version = "1.4.0", path = "./ntp-proto", default-features = false, features = ["__internal-api"] }

docs/man/ntp-ctl.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- ---
2-
title: NTP-CTL(8) ntpd-rs 1.3.1 | ntpd-rs
2+
title: NTP-CTL(8) ntpd-rs 1.4.0 | ntpd-rs
33
--- -->
44

55
# NAME

docs/man/ntp-daemon.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- ---
2-
title: NTP-DAEMON(8) ntpd-rs 1.3.1 | ntpd-rs
2+
title: NTP-DAEMON(8) ntpd-rs 1.4.0 | ntpd-rs
33
--- -->
44

55
# NAME

docs/man/ntp-metrics-exporter.8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- ---
2-
title: NTP-METRICS-EXPORTER(8) ntpd-rs 1.3.1 | ntpd-rs
2+
title: NTP-METRICS-EXPORTER(8) ntpd-rs 1.4.0 | ntpd-rs
33
--- -->
44

55
# NAME

docs/man/ntp.toml.5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- ---
2-
title: NTP.TOML(5) ntpd-rs 1.3.1 | ntpd-rs
2+
title: NTP.TOML(5) ntpd-rs 1.4.0 | ntpd-rs
33
--- -->
44

55
# NAME

docs/precompiled/man/ntp-ctl.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "NTP-CTL" "8" "" "ntpd-rs 1.3.1" "ntpd-rs"
17+
.TH "NTP-CTL" "8" "" "ntpd-rs 1.4.0" "ntpd-rs"
1818
.hy
1919
.SH NAME
2020
.PP

docs/precompiled/man/ntp-daemon.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "NTP-DAEMON" "8" "" "ntpd-rs 1.3.1" "ntpd-rs"
17+
.TH "NTP-DAEMON" "8" "" "ntpd-rs 1.4.0" "ntpd-rs"
1818
.hy
1919
.SH NAME
2020
.PP

docs/precompiled/man/ntp-metrics-exporter.8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "NTP-METRICS-EXPORTER" "8" "" "ntpd-rs 1.3.1" "ntpd-rs"
17+
.TH "NTP-METRICS-EXPORTER" "8" "" "ntpd-rs 1.4.0" "ntpd-rs"
1818
.hy
1919
.SH NAME
2020
.PP

docs/precompiled/man/ntp.toml.5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
. ftr VB CB
1515
. ftr VBI CBI
1616
.\}
17-
.TH "NTP.TOML" "5" "" "ntpd-rs 1.3.1" "ntpd-rs"
17+
.TH "NTP.TOML" "5" "" "ntpd-rs 1.4.0" "ntpd-rs"
1818
.hy
1919
.SH NAME
2020
.PP

0 commit comments

Comments
 (0)