Bump the minor version
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 880d5ea..e73385d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,12 @@
 # Change Log
 This project attempts to adhere to [Semantic Versioning](http://semver.org).
 
-## Unreleased
+## [Unreleased]
+
+## [0.7.0] - (2018-01-17)
+### Changed
+- Faster Levenshtein implementation (thanks @wdv4758h)
+
 ### Removed
 - Remove the "against_vec" functions. They are one-liners now, so they don't
   seem to add enough value to justify making the API larger. I didn't find
@@ -91,7 +96,8 @@
 ### Added
 - Implement Hamming, Jaro, Jaro-Winkler, and Levenshtein
 
-[Unreleased]: https://github.com/dguo/strsim-rs/compare/0.6.0...HEAD
+[Unreleased]: https://github.com/dguo/strsim-rs/compare/0.7.0...HEAD
+[0.7.0]: https://github.com/dguo/strsim-rs/compare/0.6.0...0.7.0
 [0.6.0]: https://github.com/dguo/strsim-rs/compare/0.5.2...0.6.0
 [0.5.2]: https://github.com/dguo/strsim-rs/compare/0.5.1...0.5.2
 [0.5.1]: https://github.com/dguo/strsim-rs/compare/0.5.0...0.5.1
diff --git a/Cargo.toml b/Cargo.toml
index 7913a10..e3eff52 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "strsim"
-version = "0.6.0"
+version = "0.7.0"
 authors = ["Danny Guo <dannyguo91@gmail.com>"]
 description = """
 Implementations of string similarity metrics.
diff --git a/README.md b/README.md
index 15e78cd..747debb 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@
 ```toml
 # Cargo.toml
 [dependencies]
-strsim = "0.6.0"
+strsim = "0.7.0"
 ```
 
 ### [Documentation](https://docs.rs/strsim/)