1.27.2 Release
diff --git a/RELEASES.md b/RELEASES.md
index c2e93a7..f249f77 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -1,3 +1,14 @@
+Version 1.27.2 (2018-07-20)
+===========================
+
+Compatibility Notes
+-------------------
+
+- The borrow checker was fixed to avoid potential unsoundness when using
+  match ergonomics: [#52213][52213].
+
+[52213]: https://github.com/rust-lang/rust/issues/52213
+
 Version 1.27.1 (2018-07-10)
 ===========================
 
diff --git a/src/bootstrap/channel.rs b/src/bootstrap/channel.rs
index 25a709c..2718db4 100644
--- a/src/bootstrap/channel.rs
+++ b/src/bootstrap/channel.rs
@@ -24,7 +24,7 @@
 use config::Config;
 
 // The version number
-pub const CFG_RELEASE_NUM: &str = "1.27.1";
+pub const CFG_RELEASE_NUM: &str = "1.27.2";
 
 pub struct GitInfo {
     inner: Option<Info>,