All Versions
33
Latest Version
Avg Release Cycle
92 days
Latest Release
615 days ago

Changelog History
Page 1

  • v0.24.0 Changes

    August 12, 2022
    • โœ‚ Remove blanket Render impl for T: Display #320
    • ๐Ÿ‘Œ Support axum v0.5 through axum-core v0.2 #325 #337
    • โšก๏ธ Update to actix-web 4.0. #331
    • โž• Add a maud::display adapter that forwards to the Display impl #350
  • v0.23.0 Changes

    November 10, 2021
    • โšก๏ธ Update to support axum 0.2 #303
    • โž• Add support for Option<T> attributes using the attr=[value] syntax. #306
    • โšก๏ธ Update to Rust 2021 #309
    • โœ‚ Remove Iron support #289
    • Disallow slashes (/) in void elements #315
  • v0.22.3 Changes

    September 27, 2021
    • ๐Ÿ‘Œ Support no_std + alloc. #278
    • ๐Ÿ‘ Provide Tide support. #280
    • ๐Ÿ‘ Provide Axum support. #284
  • v0.22.2 Changes

    January 09, 2021
    • Don't require ? suffix for empty attributes. The old syntax is kept for backward compatibility. #238
    • Generalize impl Into<String> for PreEscaped<T> to impl From<PreEscaped<T>> for String. #248
    • ๐Ÿ‘‰ Use Span::mixed_site directly from proc-macro2 #254
  • v0.22.1 Changes

    November 02, 2020
    • ๐Ÿ‘ [Added] Stable support ๐ŸŽ‰ #214
    • ๐ŸŒ [Changed] Add support for Actix Web 3.0.0. Actix Web 2.0.0 support is retained. #228
  • v0.22.0 Changes

    June 20, 2020
    • โšก๏ธ [Changed] Update Actix to 2.0.0. Actix 1.0.0 is no longer supported. #182
  • v0.21.0 Changes

    July 21, 2019
    • 0๏ธโƒฃ [Added] Default tag name to div when a class or ID is provided #173
    • [Changed] Maud has a new website! Check it out at https://maud.lambda.xyz/.
    • ๐Ÿš€ [Changed] Update Actix to 1.0. Pre-release versions of Actix are no longer supported. #176
    • ๐Ÿ›  [Fixed] Use absolute imports in generated code #170
    • ๐Ÿ›  [Fixed] Use syn instead of literalext #174
  • v0.20.0 Changes

    March 28, 2019
    • ๐Ÿ‘ [Added] Rocket 0.4 support #162
    • [Changed] Set Content-Type header for Actix responses #160
  • v0.19.0 Changes

    January 16, 2019
    • [Added] Allow arbitrary syntax in class and ID shorthand #128
    • ๐Ÿ‘ [Added] Actix 0.7 support #144
    • [Added] Warn on keywords without a leading @ #91
    • [Changed] Disallow elements that mention the same attribute twice #129
    • ๐Ÿ‘• [Removed] Dropped support for the maud_lints crate 66ddbca
    • โšก๏ธ [Fixed] Update to rustc 1.31.0-nightly (77af31408 2018-10-11)
      • The feature flags have changed again! Remove #![feature(use_extern_macros)] and #![feature(proc_macro_non_items)], and add #![feature(proc_macro_hygiene)] in their place. See the [documentation][getting-started] for a working example.
  • v0.18.1 Changes

    July 18, 2018
    • โšก๏ธ [Fixed] Update to rustc 1.29.0-nightly (1ecf6929d 2018-07-16)
      • The proc_macro feature was recently stabilized (rust-lang/rust#52081). As a result of this change, you may get "unresolved import" errors after updating your Rust compiler. To fix this error, replace any #![feature(proc_macro)] in your crate with #![feature(use_extern_macros)]. See the documentation for a working example.