Skip to content

Commit

Permalink
bump to v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Roguelazer committed May 15, 2018
1 parent 6c35ca2 commit e85dd4b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.4.1 (2018-05-15)
------------------
- Fix bug parsing message with non-empty SD fields but empty message body

0.4.0 (2017-10-24)
----------
- Make `rustc-serialize` support optional behind the self-named feature flag
Expand Down
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "syslog_rfc5424"
version = "0.4.0"
version = "0.4.1"
authors = ["James Brown <[email protected]>"]
description = "Parser for RFC5424 (IETF-format) syslog messages"
documentation = "http://roguelazer.github.io/rust-syslog-rfc5424/syslog_rfc5424/"
documentation = "https://docs.rs/syslog_rfc5424/"
homepage = "https://github.com/Roguelazer/rust-syslog-rfc5424"
repository = "https://github.com/Roguelazer/rust-syslog-rfc5424"
license = "ISC"
Expand All @@ -24,3 +24,6 @@ timeit = "0.1"

[features]
serde-serialize = ["serde", "serde_derive", "serde_json"]

[badges]
travis-ci = { repository = "Roguelazer/rust-syslog-rfc5424" }
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
This module implements an [RFC 5424](https://tools.ietf.org/html/rfc5424) IETF Syslog Protocol parser in Rust.

[![Build Status](https://travis-ci.org/Roguelazer/rust-syslog-rfc5424.svg?branch=master)](https://travis-ci.org/Roguelazer/rust-syslog-rfc5424)

[Documentation](http://roguelazer.github.io/rust-syslog-rfc5424/syslog_rfc5424/)
[![Documentation](https://docs.rs/syslog_rfc5424/badge.svg)](https://docs.rs/syslog_rfc5424)
[![crates.io](https://img.shields.io/crates/v/syslog_rfc5424.svg)](https://crates.io/crates/syslog_rfc5424)

This tool supports serializing the parsed messages using rustc-serialize if it's built with the `rustc-serialize`
feature and using serde if it's built with the `serde-serialize` feature.
Expand Down

0 comments on commit e85dd4b

Please sign in to comment.