Skip to content

Commit

Permalink
Version bump in README and book
Browse files Browse the repository at this point in the history
I was going through the book when I saw the version was still 0.8.

This commit ensures all references to Askama version are to 0.11.2.
Most of them already were.

Merge whenever appropriate for release, #722 related
  • Loading branch information
Allan Zhang authored and djc committed Oct 21, 2022
1 parent c441459 commit 1b18bab
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ First, add the following to your crate's `Cargo.toml`:

```toml
# in section [dependencies]
askama = "0.10"
askama = "0.11.2"

```

Expand Down
2 changes: 1 addition & 1 deletion book/src/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion book/src/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"

```

Expand Down
2 changes: 1 addition & 1 deletion testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ serde-json = ["serde_json", "askama/serde-json"]
markdown = ["comrak", "askama/markdown"]

[dependencies]
askama = { path = "../askama", version = "0.11.0-beta.1" }
askama = { path = "../askama", version = "0.11.2" }
comrak = { version = "0.14", default-features = false, optional = true }
serde_json = { version = "1.0", optional = true }

Expand Down

0 comments on commit 1b18bab

Please sign in to comment.