Skip to content

Commit f6acf78

Browse files
authored
Merge pull request #205 from Kijewski/pr-0.3.5
Bump version number to v0.3.5
2 parents 1e319fd + 3cb3372 commit f6acf78

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

examples/actix-web-app/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = ["."]
55

66
[package]
77
name = "actix-web-app"
8-
version = "0.3.4"
8+
version = "0.3.5"
99
edition = "2021"
1010
license = "MIT OR Apache-2.0"
1111
publish = false
@@ -16,7 +16,7 @@ actix-web = { version = "4.8.0", default-features = false, features = ["macros"]
1616
# and actix-web as your web-framework.
1717
# rinja_actix makes it easy to use rinja templates as `Responder` of an actix-web request.
1818
# The rendered template is simply the response of your handler!
19-
rinja_actix = { version = "0.3.4", path = "../../rinja_actix" }
19+
rinja_actix = { version = "0.3.5", path = "../../rinja_actix" }
2020
tokio = { version = "1.38.0", features = ["sync", "rt-multi-thread"] }
2121

2222
# serde and strum are used to parse (deserialize) and generate (serialize) information

rinja/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rinja"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
description = "Type-safe, compiled Jinja-like templates for Rust"
55
documentation = "https://docs.rs/rinja"
66
keywords = ["markup", "template", "jinja2", "html"]
@@ -37,7 +37,7 @@ with-rocket = ["rinja_derive/with-rocket"]
3737
with-warp = ["rinja_derive/with-warp"]
3838

3939
[dependencies]
40-
rinja_derive = { version = "=0.3.4", path = "../rinja_derive" }
40+
rinja_derive = { version = "=0.3.5", path = "../rinja_derive" }
4141

4242
humansize = { version = "2", optional = true }
4343
num-traits = { version = "0.2.6", optional = true }

rinja_actix/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["."]
33

44
[package]
55
name = "rinja_actix"
6-
version = "0.3.4"
6+
version = "0.3.5"
77
description = "Actix-Web integration for Rinja templates"
88
documentation = "https://docs.rs/rinja"
99
keywords = ["markup", "template", "jinja2", "html"]
@@ -29,7 +29,7 @@ serde_json = ["rinja/serde_json"]
2929
urlencode = ["rinja/urlencode"]
3030

3131
[dependencies]
32-
rinja = { version = "0.3.4", path = "../rinja", default-features = false, features = ["with-actix-web"] }
32+
rinja = { version = "0.3.5", path = "../rinja", default-features = false, features = ["with-actix-web"] }
3333

3434
actix-web = { version = "4", default-features = false }
3535

rinja_axum/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["."]
33

44
[package]
55
name = "rinja_axum"
6-
version = "0.3.4"
6+
version = "0.3.5"
77
edition = "2021"
88
rust-version = "1.71"
99
description = "Axum integration for Rinja templates"
@@ -29,7 +29,7 @@ serde_json = ["rinja/serde_json"]
2929
urlencode = ["rinja/urlencode"]
3030

3131
[dependencies]
32-
rinja = { version = "0.3.4", path = "../rinja", default-features = false, features = ["with-axum"] }
32+
rinja = { version = "0.3.5", path = "../rinja", default-features = false, features = ["with-axum"] }
3333

3434
axum-core = "0.4"
3535
http = "1.0"

rinja_derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rinja_derive"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
description = "Procedural macro package for Rinja"
55
homepage = "https://github.com/rinja-rs/rinja"
66
repository = "https://github.com/rinja-rs/rinja"
@@ -29,7 +29,7 @@ with-rocket = []
2929
with-warp = []
3030

3131
[dependencies]
32-
parser = { package = "rinja_parser", version = "=0.3.4", path = "../rinja_parser" }
32+
parser = { package = "rinja_parser", version = "=0.3.5", path = "../rinja_parser" }
3333

3434
basic-toml = { version = "0.1.1", optional = true }
3535
pulldown-cmark = { version = "0.12.0", optional = true, default-features = false }

rinja_derive_standalone/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["."]
33

44
[package]
55
name = "rinja_derive_standalone"
6-
version = "0.3.4"
6+
version = "0.3.5"
77
description = "Procedural macro package for Rinja"
88
homepage = "https://github.com/rinja-rs/rinja"
99
repository = "https://github.com/rinja-rs/rinja"
@@ -32,7 +32,7 @@ with-rocket = []
3232
with-warp = []
3333

3434
[dependencies]
35-
parser = { package = "rinja_parser", version = "=0.3.4", path = "../rinja_parser" }
35+
parser = { package = "rinja_parser", version = "=0.3.5", path = "../rinja_parser" }
3636

3737
basic-toml = { version = "0.1.1", optional = true }
3838
pulldown-cmark = { version = "0.12.0", optional = true, default-features = false }

rinja_parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rinja_parser"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
description = "Parser for Rinja templates"
55
documentation = "https://docs.rs/rinja"
66
keywords = ["markup", "template", "jinja2", "html"]

rinja_rocket/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["."]
33

44
[package]
55
name = "rinja_rocket"
6-
version = "0.3.4"
6+
version = "0.3.5"
77
description = "Rocket integration for Rinja templates"
88
documentation = "https://docs.rs/rinja"
99
keywords = ["markup", "template", "jinja2", "html"]
@@ -29,7 +29,7 @@ serde_json = ["rinja/serde_json"]
2929
urlencode = ["rinja/urlencode"]
3030

3131
[dependencies]
32-
rinja = { version = "0.3.4", path = "../rinja", default-features = false, features = ["with-rocket"] }
32+
rinja = { version = "0.3.5", path = "../rinja", default-features = false, features = ["with-rocket"] }
3333

3434
rocket = { version = "0.5", default-features = false }
3535

rinja_warp/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["."]
33

44
[package]
55
name = "rinja_warp"
6-
version = "0.3.4"
6+
version = "0.3.5"
77
description = "Warp integration for Rinja templates"
88
documentation = "https://docs.rs/rinja"
99
keywords = ["markup", "template", "jinja2", "html"]
@@ -29,7 +29,7 @@ serde_json = ["rinja/serde_json"]
2929
urlencode = ["rinja/urlencode"]
3030

3131
[dependencies]
32-
rinja = { version = "0.3.4", path = "../rinja", default-features = false, features = ["with-warp"] }
32+
rinja = { version = "0.3.5", path = "../rinja", default-features = false, features = ["with-warp"] }
3333

3434
warp = { version = "0.3", default-features = false }
3535

testing/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rinja_testing"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
authors = ["rinja-rs developers"]
55
workspace = ".."
66
edition = "2021"
@@ -13,15 +13,15 @@ code-in-doc = ["rinja/code-in-doc"]
1313
serde_json = ["dep:serde_json", "rinja/serde_json"]
1414

1515
[dependencies]
16-
rinja = { path = "../rinja", version = "0.3.4" }
16+
rinja = { path = "../rinja", version = "0.3.5" }
1717

1818
serde_json = { version = "1.0", optional = true }
1919

2020
# intentionally shadow the name `::core` to test if the generated code still works fine
2121
core = { package = "intentionally-empty", version = "1.0.0" }
2222

2323
[dev-dependencies]
24-
rinja = { path = "../rinja", version = "0.3.4", features = ["code-in-doc", "serde_json"] }
24+
rinja = { path = "../rinja", version = "0.3.5", features = ["code-in-doc", "serde_json"] }
2525

2626
criterion = "0.5"
2727
phf = { version = "0.11", features = ["macros" ] }

0 commit comments

Comments
 (0)