From 593a66324fee5d17fb0f400c5ca3f368c4888734 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sat, 2 Jun 2018 11:45:37 -0700 Subject: [PATCH] update changelog --- CHANGES.md | 12 ++++++++++-- MIGRATION.md | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 879040c5..d1e4e6f6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,20 +6,28 @@ * Re-export `actix::prelude::*` as `actix_web::actix` module. +* `HttpRequest::url_for_static()` for a named route with no variables segments + ### Changed -* Migrate to tokio - * Min rustc version is 1.26 +* Use tokio instead of tokio-core + * Use `&mut self` instead of `&self` for Middleware trait + ### Removed * Remove `Route::with2()` and `Route::with3()` use tuple of extractors instead. +### Fixed + +* `HttpRequest::url_for()` for a named route with no variables segments #265 + + ## [0.6.10] - 2018-05-24 ### Added diff --git a/MIGRATION.md b/MIGRATION.md index 0b5252d9..91f8a800 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -35,7 +35,7 @@ fn index(query: Query<..>, info: Json impl Responder {} ``` - use tuple of extractors: + use tuple of extractors and use `.with()` for registration: ```rust fn index((query, json): (Query<..>, Json impl Responder {}