Bump version number to v0.3.5

We gathered quiet a few changes in the last month:
<https://github.com/rinja-rs/rinja/compare/v0.3.4...1e319fd0c869884b68c9287bc4bcb1309b16328e>
This commit is contained in:
René Kijewski 2024-10-23 15:10:15 +02:00
parent 1e319fd0c8
commit 3cb337255b
10 changed files with 20 additions and 20 deletions

View File

@ -5,7 +5,7 @@ members = ["."]
[package] [package]
name = "actix-web-app" name = "actix-web-app"
version = "0.3.4" version = "0.3.5"
edition = "2021" edition = "2021"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
publish = false publish = false
@ -16,7 +16,7 @@ actix-web = { version = "4.8.0", default-features = false, features = ["macros"]
# and actix-web as your web-framework. # and actix-web as your web-framework.
# rinja_actix makes it easy to use rinja templates as `Responder` of an actix-web request. # rinja_actix makes it easy to use rinja templates as `Responder` of an actix-web request.
# The rendered template is simply the response of your handler! # The rendered template is simply the response of your handler!
rinja_actix = { version = "0.3.4", path = "../../rinja_actix" } rinja_actix = { version = "0.3.5", path = "../../rinja_actix" }
tokio = { version = "1.38.0", features = ["sync", "rt-multi-thread"] } tokio = { version = "1.38.0", features = ["sync", "rt-multi-thread"] }
# serde and strum are used to parse (deserialize) and generate (serialize) information # serde and strum are used to parse (deserialize) and generate (serialize) information

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rinja" name = "rinja"
version = "0.3.4" version = "0.3.5"
description = "Type-safe, compiled Jinja-like templates for Rust" description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/rinja" documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"] keywords = ["markup", "template", "jinja2", "html"]
@ -37,7 +37,7 @@ with-rocket = ["rinja_derive/with-rocket"]
with-warp = ["rinja_derive/with-warp"] with-warp = ["rinja_derive/with-warp"]
[dependencies] [dependencies]
rinja_derive = { version = "=0.3.4", path = "../rinja_derive" } rinja_derive = { version = "=0.3.5", path = "../rinja_derive" }
humansize = { version = "2", optional = true } humansize = { version = "2", optional = true }
num-traits = { version = "0.2.6", optional = true } num-traits = { version = "0.2.6", optional = true }

View File

@ -3,7 +3,7 @@ members = ["."]
[package] [package]
name = "rinja_actix" name = "rinja_actix"
version = "0.3.4" version = "0.3.5"
description = "Actix-Web integration for Rinja templates" description = "Actix-Web integration for Rinja templates"
documentation = "https://docs.rs/rinja" documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"] keywords = ["markup", "template", "jinja2", "html"]
@ -29,7 +29,7 @@ serde_json = ["rinja/serde_json"]
urlencode = ["rinja/urlencode"] urlencode = ["rinja/urlencode"]
[dependencies] [dependencies]
rinja = { version = "0.3.4", path = "../rinja", default-features = false, features = ["with-actix-web"] } rinja = { version = "0.3.5", path = "../rinja", default-features = false, features = ["with-actix-web"] }
actix-web = { version = "4", default-features = false } actix-web = { version = "4", default-features = false }

View File

@ -3,7 +3,7 @@ members = ["."]
[package] [package]
name = "rinja_axum" name = "rinja_axum"
version = "0.3.4" version = "0.3.5"
edition = "2021" edition = "2021"
rust-version = "1.71" rust-version = "1.71"
description = "Axum integration for Rinja templates" description = "Axum integration for Rinja templates"
@ -29,7 +29,7 @@ serde_json = ["rinja/serde_json"]
urlencode = ["rinja/urlencode"] urlencode = ["rinja/urlencode"]
[dependencies] [dependencies]
rinja = { version = "0.3.4", path = "../rinja", default-features = false, features = ["with-axum"] } rinja = { version = "0.3.5", path = "../rinja", default-features = false, features = ["with-axum"] }
axum-core = "0.4" axum-core = "0.4"
http = "1.0" http = "1.0"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rinja_derive" name = "rinja_derive"
version = "0.3.4" version = "0.3.5"
description = "Procedural macro package for Rinja" description = "Procedural macro package for Rinja"
homepage = "https://github.com/rinja-rs/rinja" homepage = "https://github.com/rinja-rs/rinja"
repository = "https://github.com/rinja-rs/rinja" repository = "https://github.com/rinja-rs/rinja"
@ -29,7 +29,7 @@ with-rocket = []
with-warp = [] with-warp = []
[dependencies] [dependencies]
parser = { package = "rinja_parser", version = "=0.3.4", path = "../rinja_parser" } parser = { package = "rinja_parser", version = "=0.3.5", path = "../rinja_parser" }
basic-toml = { version = "0.1.1", optional = true } basic-toml = { version = "0.1.1", optional = true }
pulldown-cmark = { version = "0.12.0", optional = true, default-features = false } pulldown-cmark = { version = "0.12.0", optional = true, default-features = false }

View File

@ -3,7 +3,7 @@ members = ["."]
[package] [package]
name = "rinja_derive_standalone" name = "rinja_derive_standalone"
version = "0.3.4" version = "0.3.5"
description = "Procedural macro package for Rinja" description = "Procedural macro package for Rinja"
homepage = "https://github.com/rinja-rs/rinja" homepage = "https://github.com/rinja-rs/rinja"
repository = "https://github.com/rinja-rs/rinja" repository = "https://github.com/rinja-rs/rinja"
@ -32,7 +32,7 @@ with-rocket = []
with-warp = [] with-warp = []
[dependencies] [dependencies]
parser = { package = "rinja_parser", version = "=0.3.4", path = "../rinja_parser" } parser = { package = "rinja_parser", version = "=0.3.5", path = "../rinja_parser" }
basic-toml = { version = "0.1.1", optional = true } basic-toml = { version = "0.1.1", optional = true }
pulldown-cmark = { version = "0.12.0", optional = true, default-features = false } pulldown-cmark = { version = "0.12.0", optional = true, default-features = false }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rinja_parser" name = "rinja_parser"
version = "0.3.4" version = "0.3.5"
description = "Parser for Rinja templates" description = "Parser for Rinja templates"
documentation = "https://docs.rs/rinja" documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"] keywords = ["markup", "template", "jinja2", "html"]

View File

@ -3,7 +3,7 @@ members = ["."]
[package] [package]
name = "rinja_rocket" name = "rinja_rocket"
version = "0.3.4" version = "0.3.5"
description = "Rocket integration for Rinja templates" description = "Rocket integration for Rinja templates"
documentation = "https://docs.rs/rinja" documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"] keywords = ["markup", "template", "jinja2", "html"]
@ -29,7 +29,7 @@ serde_json = ["rinja/serde_json"]
urlencode = ["rinja/urlencode"] urlencode = ["rinja/urlencode"]
[dependencies] [dependencies]
rinja = { version = "0.3.4", path = "../rinja", default-features = false, features = ["with-rocket"] } rinja = { version = "0.3.5", path = "../rinja", default-features = false, features = ["with-rocket"] }
rocket = { version = "0.5", default-features = false } rocket = { version = "0.5", default-features = false }

View File

@ -3,7 +3,7 @@ members = ["."]
[package] [package]
name = "rinja_warp" name = "rinja_warp"
version = "0.3.4" version = "0.3.5"
description = "Warp integration for Rinja templates" description = "Warp integration for Rinja templates"
documentation = "https://docs.rs/rinja" documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"] keywords = ["markup", "template", "jinja2", "html"]
@ -29,7 +29,7 @@ serde_json = ["rinja/serde_json"]
urlencode = ["rinja/urlencode"] urlencode = ["rinja/urlencode"]
[dependencies] [dependencies]
rinja = { version = "0.3.4", path = "../rinja", default-features = false, features = ["with-warp"] } rinja = { version = "0.3.5", path = "../rinja", default-features = false, features = ["with-warp"] }
warp = { version = "0.3", default-features = false } warp = { version = "0.3", default-features = false }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "rinja_testing" name = "rinja_testing"
version = "0.3.4" version = "0.3.5"
authors = ["rinja-rs developers"] authors = ["rinja-rs developers"]
workspace = ".." workspace = ".."
edition = "2021" edition = "2021"
@ -13,7 +13,7 @@ code-in-doc = ["rinja/code-in-doc"]
serde_json = ["dep:serde_json", "rinja/serde_json"] serde_json = ["dep:serde_json", "rinja/serde_json"]
[dependencies] [dependencies]
rinja = { path = "../rinja", version = "0.3.4" } rinja = { path = "../rinja", version = "0.3.5" }
serde_json = { version = "1.0", optional = true } serde_json = { version = "1.0", optional = true }
@ -21,7 +21,7 @@ serde_json = { version = "1.0", optional = true }
core = { package = "intentionally-empty", version = "1.0.0" } core = { package = "intentionally-empty", version = "1.0.0" }
[dev-dependencies] [dev-dependencies]
rinja = { path = "../rinja", version = "0.3.4", features = ["code-in-doc", "serde_json"] } rinja = { path = "../rinja", version = "0.3.5", features = ["code-in-doc", "serde_json"] }
criterion = "0.5" criterion = "0.5"
phf = { version = "0.11", features = ["macros" ] } phf = { version = "0.11", features = ["macros" ] }