Skip to content

Commit

Permalink
Release 0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
lambda-fairy committed Jun 20, 2020
1 parent fe5fcb1 commit 34a79ee
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 14 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Change Log

## [Unreleased]

## [0.22.0] - 2020-06-20
- [Changed] Update Actix to 2.0.0. Actix 1.0.0 is no longer supported.
[#182](https://github.com/lambda-fairy/maud/pull/182)

Expand Down Expand Up @@ -227,7 +229,8 @@
- [Fixed] Update to latest syntax extension API


[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.21.0...HEAD
[Unreleased]: https://github.com/lambda-fairy/maud/compare/v0.22.0...HEAD
[0.22.0]: https://github.com/lambda-fairy/maud/compare/v0.21.0...v0.22.0
[0.21.0]: https://github.com/lambda-fairy/maud/compare/v0.20.0...v0.21.0
[0.20.0]: https://github.com/lambda-fairy/maud/compare/v0.19.0...v0.20.0
[0.19.0]: https://github.com/lambda-fairy/maud/compare/v0.18.1...v0.19.0
Expand Down
8 changes: 4 additions & 4 deletions benchmarks/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions docs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions maud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "maud"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.21.0"
version = "0.22.0"
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud/"
Expand All @@ -16,7 +16,7 @@ actix-web = ["actix-web-dep", "futures"]

[dependencies]
maud_htmlescape = { version = "0.17.0", path = "../maud_htmlescape" }
maud_macros = { version = "0.21.0", path = "../maud_macros" }
maud_macros = { version = "0.22.0", path = "../maud_macros" }
iron = { version = ">= 0.5.1, < 0.7.0", optional = true }
rocket = { version = ">= 0.3, < 0.5", optional = true }
futures = { version = "0.3.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion maud/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//!
//! [book]: https://maud.lambda.xyz/
#![doc(html_root_url = "https://docs.rs/maud/0.21.0")]
#![doc(html_root_url = "https://docs.rs/maud/0.22.0")]

#[cfg(feature = "actix-web")] extern crate actix_web_dep;
#[cfg(feature = "iron")] extern crate iron;
Expand Down
2 changes: 1 addition & 1 deletion maud_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "maud_macros"
# When releasing a new version, please update html_root_url in src/lib.rs
version = "0.21.0"
version = "0.22.0"
authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0"
documentation = "https://docs.rs/maud_macros/"
Expand Down
2 changes: 1 addition & 1 deletion maud_macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#![feature(proc_macro_quote)]
#![feature(proc_macro_span)]

#![doc(html_root_url = "https://docs.rs/maud_macros/0.21.0")]
#![doc(html_root_url = "https://docs.rs/maud_macros/0.22.0")]

// TokenStream values are reference counted, and the mental overhead of tracking
// lifetimes outweighs the marginal gains from explicit borrowing
Expand Down

0 comments on commit 34a79ee

Please sign in to comment.