Skip to content

Commit

Permalink
Version bump to v0.8.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
zslayton committed Apr 5, 2015
1 parent 1d84905 commit 5dead1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "stomp"
version = "0.8.3"
version = "0.8.4"
authors = [ "zslayton <[email protected]" ]
repository = "https://github.com/zslayton/stomp-rs"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/frame.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ impl Frame {
let header = Header::decode_string(line.as_ref());
match header {
Some(h) => header_list.push(h),
None => return Err(Error::new(InvalidInput, "Invalid header encountered."))//, line.to_string().as_str())))
None => return Err(Error::new(InvalidInput, "Invalid header encountered."))
}
}

Expand Down

0 comments on commit 5dead1b

Please sign in to comment.