Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2022-06-08 | Merge askama_derive into askama | René Kijewski | 1 | -95/+0 | |
2022-03-28 | Implement std::error::Error::source | René Kijewski | 1 | -4/+4 | |
Error::cause() is deprecated since Rust 1.33. | |||||
2022-01-28 | Implement error propagation expression: `?` (#590) | René Kijewski | 1 | -5/+10 | |
This change allows using the operator `?` in askama expressions. It works like the same operator in Rust: if a `Result` is `Ok`, it is unwrapped. If it is an error, then the `render()` method fails with this error value. | |||||
2020-05-17 | Remove now unused match arms | Dirkjan Ochtman | 1 | -2/+0 | |
2020-05-17 | Properly annotate non-exhaustive enum | Dirkjan Ochtman | 1 | -6/+1 | |
2020-01-29 | Error::description() will be deprecated soon | Dirkjan Ochtman | 1 | -12/+2 | |
2019-01-17 | Add optional support for yaml filter (see #192) | Dirkjan Ochtman | 1 | -1/+15 | |
2019-01-12 | Rename deprecate method Error::cause() | Dirkjan Ochtman | 1 | -2/+2 | |
2018-12-08 | Use 2018 edition idioms | Dirkjan Ochtman | 1 | -2/+2 | |
2018-12-07 | Fix typo in serde_json feature | Dirkjan Ochtman | 1 | -6/+6 | |
2018-06-21 | Fix formatting with cargo fmt | Dirkjan Ochtman | 1 | -9/+7 | |
2018-06-04 | Converted error-chain based error to enum based error | Philipp Korber | 1 | -0/+95 | |
- now implements `Send` + `Sync` + `'static` - still implements `std::error::Error`, `Debug`, `Display`, `From<std::fmt::Error>`, `From<::serde_json::Error>` |