From 2ff0916514c19998e6df7aec1212f1ee05a5303c Mon Sep 17 00:00:00 2001
From: ticki <ticki@users.noreply.github.com>
Date: Wed, 7 Sep 2016 11:08:26 +0200
Subject: [PATCH] Bump to 1.0.7.

---
 Cargo.toml   | 6 +++---
 src/event.rs | 9 ++++-----
 2 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml
index 6ff15917..927264f9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,10 +1,10 @@
 [package]
 name = "termion"
-version = "1.0.6"
-authors = ["Ticki <Ticki@users.noreply.github.com>"]
+version = "1.0.7"
+authors = ["ticki <Ticki@users.noreply.github.com>"]
 description = "A bindless library for manipulating terminals."
 repository = "https://github.com/ticki/termion"
-documentation = "https://docs.rs/crate/eudex"
+documentation = "https://docs.rs/termion"
 license = "MIT"
 keywords = ["tty", "color", "terminal", "password", "tui"]
 exclude = ["target", "CHANGELOG.md", "image.png", "Cargo.lock"]
diff --git a/src/event.rs b/src/event.rs
index 48234390..57602284 100644
--- a/src/event.rs
+++ b/src/event.rs
@@ -143,7 +143,7 @@ where I: Iterator<Item = Result<u8, Error>>
                                 3 => MouseEvent::Release(cx, cy),
                                 _ => return error,
                             })
-                        }
+                        },
                         Some(Ok(b'<')) => {
                             // xterm mouse encoding:
                             // ESC [ < Cb ; Cx ; Cy ; (M or m)
@@ -177,7 +177,6 @@ where I: Iterator<Item = Result<u8, Error>>
                                         b'M' => MouseEvent::Press(button, cx, cy),
                                         b'm' => MouseEvent::Release(cx, cy),
                                         _ => return error,
-
                                     }
                                 }
                                 32 => MouseEvent::Hold(cx, cy),
@@ -185,7 +184,7 @@ where I: Iterator<Item = Result<u8, Error>>
                             };
 
                             Event::Mouse(event)
-                        }
+                        },
                         Some(Ok(c @ b'0'...b'9')) => {
                             // Numbered escape code.
                             let mut buf = Vec::new();
@@ -238,10 +237,10 @@ where I: Iterator<Item = Result<u8, Error>>
                                         v @ 23...24 => Event::Key(Key::F(v - 12)),
                                         _ => return error,
                                     }
-                                }
+                                },
                                 _ => return error,
                             }
-                        }
+                        },
                         _ => return error,
                     }
                 }
-- 
GitLab