diff options
Diffstat (limited to '')
-rw-r--r-- | book/src/filters.md | 2 | ||||
-rw-r--r-- | book/src/getting_started.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/book/src/filters.md b/book/src/filters.md index ce1ff6e..4b2aab7 100644 --- a/book/src/filters.md +++ b/book/src/filters.md @@ -340,7 +340,7 @@ The following filters can be enabled by requesting the respective feature in the ``` [dependencies] -askama = { version = "0.11.0", features = "serde-json" } +askama = { version = "0.11.2", features = "serde-json" } ``` ### `json` | `tojson` diff --git a/book/src/getting_started.md b/book/src/getting_started.md index 4b7fb5f..c82b2b8 100644 --- a/book/src/getting_started.md +++ b/book/src/getting_started.md @@ -4,7 +4,7 @@ First, add the following to your crate's `Cargo.toml`: ```toml # in section [dependencies] -askama = "0.8" +askama = "0.11.2" ``` |