diff --git a/contrib/dyn_templates/Cargo.toml b/contrib/dyn_templates/Cargo.toml index 60179218..3802455f 100644 --- a/contrib/dyn_templates/Cargo.toml +++ b/contrib/dyn_templates/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rocket_dyn_templates" -version = "0.1.0" +version = "0.2.0" authors = ["Sergio Benitez "] description = "Dynamic templating engine integration for Rocket." documentation = "https://api.rocket.rs/v0.5/rocket_dyn_templates/" diff --git a/contrib/dyn_templates/README.md b/contrib/dyn_templates/README.md index b9864d90..5728dfb4 100644 --- a/contrib/dyn_templates/README.md +++ b/contrib/dyn_templates/README.md @@ -22,7 +22,7 @@ supports [Handlebars] and [Tera]. ```toml [dependencies.rocket_dyn_templates] - version = "0.1.0" + version = "0.2.0" features = ["handlebars", "tera"] ``` diff --git a/contrib/dyn_templates/src/lib.rs b/contrib/dyn_templates/src/lib.rs index 48f7d557..b01b6247 100644 --- a/contrib/dyn_templates/src/lib.rs +++ b/contrib/dyn_templates/src/lib.rs @@ -12,7 +12,7 @@ //! //! ```toml //! [dependencies.rocket_dyn_templates] -//! version = "0.1.0" +//! version = "0.2.0" //! features = ["handlebars", "tera", "minijinja"] //! ``` //! diff --git a/docs/guide/01-upgrading.md b/docs/guide/01-upgrading.md index 08942a7e..77b6d9ce 100644 --- a/docs/guide/01-upgrading.md +++ b/docs/guide/01-upgrading.md @@ -64,7 +64,7 @@ to `Cargo.toml`: - rocket = "0.4" - rocket_contrib = { version = "0.4", features = ["json"], default-features = false } + rocket = { version = "0.5.1", features = ["json"] } -+ rocket_dyn_templates = { version = "0.1.0", features = ["tera"] } ++ rocket_dyn_templates = { version = "0.2.0", features = ["tera"] } ``` ! note: `rocket_dyn_templates` (and co.) _does not_ follow in version lock-step