Skip to content

Commit e85dd4b

Browse files
committed
bump to v0.4.1
1 parent 6c35ca2 commit e85dd4b

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.4.1 (2018-05-15)
2+
------------------
3+
- Fix bug parsing message with non-empty SD fields but empty message body
4+
15
0.4.0 (2017-10-24)
26
----------
37
- Make `rustc-serialize` support optional behind the self-named feature flag

Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
22
name = "syslog_rfc5424"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
authors = ["James Brown <roguelazer@roguelazer.com>"]
55
description = "Parser for RFC5424 (IETF-format) syslog messages"
6-
documentation = "http://roguelazer.github.io/rust-syslog-rfc5424/syslog_rfc5424/"
6+
documentation = "https://docs.rs/syslog_rfc5424/"
77
homepage = "https://github.com/Roguelazer/rust-syslog-rfc5424"
88
repository = "https://github.com/Roguelazer/rust-syslog-rfc5424"
99
license = "ISC"
@@ -24,3 +24,6 @@ timeit = "0.1"
2424

2525
[features]
2626
serde-serialize = ["serde", "serde_derive", "serde_json"]
27+
28+
[badges]
29+
travis-ci = { repository = "Roguelazer/rust-syslog-rfc5424" }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
This module implements an [RFC 5424](https://tools.ietf.org/html/rfc5424) IETF Syslog Protocol parser in Rust.
22

33
[![Build Status](https://travis-ci.org/Roguelazer/rust-syslog-rfc5424.svg?branch=master)](https://travis-ci.org/Roguelazer/rust-syslog-rfc5424)
4-
5-
[Documentation](http://roguelazer.github.io/rust-syslog-rfc5424/syslog_rfc5424/)
4+
[![Documentation](https://docs.rs/syslog_rfc5424/badge.svg)](https://docs.rs/syslog_rfc5424)
5+
[![crates.io](https://img.shields.io/crates/v/syslog_rfc5424.svg)](https://crates.io/crates/syslog_rfc5424)
66

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

0 commit comments

Comments
 (0)