From 8a789c5d0454f28e18a49ae9346a19a6f6444245 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sun, 16 Apr 2017 14:23:34 -0700 Subject: [PATCH] Update minimum nightly version in codegen. --- codegen/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/build.rs b/codegen/build.rs index 4946eabd..0e444cf9 100644 --- a/codegen/build.rs +++ b/codegen/build.rs @@ -8,7 +8,7 @@ use ansi_term::Color::{Red, Yellow, Blue, White}; use version_check::{is_nightly, is_min_version, is_min_date}; // Specifies the minimum nightly version needed to compile Rocket's codegen. -const MIN_DATE: &'static str = "2017-03-30"; +const MIN_DATE: &'static str = "2017-04-15"; const MIN_VERSION: &'static str = "1.18.0-nightly"; // Convenience macro for writing to stderr.