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: prepare v0.3.0 #6

Merged
merged 1 commit into from
Jan 20, 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: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.0] - 2024-01-20

### Added

- `Syslog::invalid_chars()` to allow configuring behavior when a message to be logged contains
characters that are invalid in a C string (i.e., interior nul bytes) (#1)

### Changed

- If a log message contains characters that are invalid in a C string (i.e., interior nul bytes),
these characters are replaced with the Unicode replacement character (�) and the modified message
is logged to syslog. This is a change from the past default, which was to panic in debug mode and
log a message in release mode. (#1)

## [0.2.0] - 2023-05-07

### Changed

- Disabled unused `tracing-subscriber` features (#1)
- Updated to Rust 2021 edition
- Updated `once_cell` to 1.17
- Updated `once_cell` to 1.17
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "syslog-tracing"
version = "0.2.0"
version = "0.3.0"
authors = ["Max Heller <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down