Skip to content

Commit

Permalink
Bump version for new imap-proto
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhoo committed Apr 27, 2018
1 parent 0bf8e5d commit c28d088
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "imap"
version = "0.8.0"
version = "0.8.1"
authors = ["Matt McCoy <[email protected]>",
"Jon Gjengset <[email protected]>"]
documentation = "https://docs.rs/imap/"
Expand All @@ -28,7 +28,7 @@ path = "src/lib.rs"
native-tls = "0.1"
regex = "0.2"
bufstream = "0.1"
imap-proto = "0.3"
imap-proto = "0.4"
nom = "3.2.1"

[dev-dependencies]
Expand Down
3 changes: 3 additions & 0 deletions src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@ pub fn parse_mailbox(mut lines: &[u8]) -> Result<Mailbox> {

use imap_proto::MailboxDatum;
match m {
MailboxDatum::Status { .. } => {
// TODO: we probably want to expose statuses too
}
MailboxDatum::Exists(e) => {
mailbox.exists = e;
}
Expand Down

3 comments on commit c28d088

@jonhoo
Copy link
Collaborator Author

@jonhoo jonhoo commented on c28d088 Apr 27, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mattnenterprise can you publish this version so we get the goodies from https://github.com/djc/tokio-imap/releases/tag/imap-proto-0.4.0 ?

@mattnenterprise
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jonhoo The new version has been published.

@jonhoo
Copy link
Collaborator Author

@jonhoo jonhoo commented on c28d088 May 6, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any further thoughts on #69 ?

Please sign in to comment.