Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.1 #474

Merged
merged 1 commit into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.2.1] - 2024-06-07

### Added
- Threat model in the documentation
- Sample config for IEC/IEEE 61580

### Changed
- Wrap PTP instance's state in a generic mutex and handle announce messages on slave ports
- Handling of multiple ports of the instance being connected to the same network
- Now using tracing instead of fern for logging

### Fixed
- Actually forward TLVs on announce messages
- Fixed two bugs in the BMCA

## [0.2.0] - 2024-03-07

### Added
Expand All @@ -17,5 +32,6 @@
### Fixed
- Fixed race condition during startup

[0.2.1]: https://github.com/pendulum-project/statime/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/pendulum-project/statime/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/pendulum-project/statime/releases/tag/v0.1.0
4 changes: 2 additions & 2 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 @@ -9,7 +9,7 @@ exclude = [
resolver = "2"

[workspace.package]
version = "0.2.0"
version = "0.2.1"
edition = "2021"
license = "Apache-2.0 OR MIT"
repository = "https://github.com/pendulum-project/statime"
Expand Down Expand Up @@ -53,7 +53,7 @@ timestamped-socket = "0.2.1"

# 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
statime = { version = "0.2.0", path = "./statime" }
statime = { version = "0.2.1", path = "./statime" }

[profile.release]
debug = 2
2 changes: 1 addition & 1 deletion docs/man/statime.8.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- ---
title: STATIME(8) statime 0.2.0 | statime
title: STATIME(8) statime 0.2.1 | statime
--- -->

# NAME
Expand Down
2 changes: 1 addition & 1 deletion docs/man/statime.toml.5.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- ---
title: STATIME.TOML(5) statime 0.2.0 | statime
title: STATIME.TOML(5) statime 0.2.1 | statime
--- -->

# NAME
Expand Down
4 changes: 2 additions & 2 deletions docs/precompiled/man/statime.8
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 3.1.13
.\" Automatically generated by Pandoc 3.2
.\"
.TH "STATIME" "8" "" "statime 0.2.0" "statime"
.TH "STATIME" "8" "" "statime 0.2.1" "statime"
.SH NAME
\f[CR]statime\f[R] \- The Statime PTP daemon for linux
.SH SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions docs/precompiled/man/statime.toml.5
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Automatically generated by Pandoc 3.1.13
.\" Automatically generated by Pandoc 3.2
.\"
.TH "STATIME.TOML" "5" "" "statime 0.2.0" "statime"
.TH "STATIME.TOML" "5" "" "statime 0.2.1" "statime"
.SH NAME
\f[CR]statime.toml\f[R] \- configuration file for the statime
ptp\-daemon
Expand Down
Loading