Skip to content

Commit 697862a

Browse files
committed
Bump version number to 0.13.0
1 parent 661c38c commit 697862a

File tree

17 files changed

+34
-34
lines changed

17 files changed

+34
-34
lines changed

askama/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
description = "Type-safe, compiled Jinja-like templates for Rust"
55
keywords = ["markup", "template", "jinja2", "html"]
66
categories = ["template-engine"]
@@ -27,7 +27,7 @@ harness = false
2727
itoa = "1.0.11"
2828

2929
# needed by feature "derive"
30-
askama_derive = { version = "=0.13.0-pre.0", path = "../askama_derive", default-features = false, optional = true }
30+
askama_derive = { version = "=0.13.0", path = "../askama_derive", default-features = false, optional = true }
3131

3232
# needed by feature "serde_json"
3333
serde = { version = "1.0", optional = true, default-features = false }

askama_derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_derive"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
description = "Procedural macro package for Askama"
55
homepage = "https://github.com/askama-rs/askama"
66
repository = "https://github.com/askama-rs/askama"
@@ -17,7 +17,7 @@ rustdoc-args = ["--generate-link-to-definition", "--cfg=docsrs"]
1717
proc-macro = true
1818

1919
[dependencies]
20-
parser = { package = "askama_parser", version = "=0.13.0-pre.0", path = "../askama_parser" }
20+
parser = { package = "askama_parser", version = "=0.13.0", path = "../askama_parser" }
2121

2222
basic-toml = { version = "0.1.1", optional = true }
2323
pulldown-cmark = { version = "0.13.0", optional = true, default-features = false }

askama_derive_standalone/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_derive_standalone"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
description = "Procedural macro package for Askama"
55
homepage = "https://github.com/askama-rs/askama"
66
repository = "https://github.com/askama-rs/askama"
@@ -20,7 +20,7 @@ harness = false
2020
required-features = ["__standalone"]
2121

2222
[dependencies]
23-
parser = { package = "askama_parser", version = "=0.13.0-pre.0", path = "../askama_parser" }
23+
parser = { package = "askama_parser", version = "=0.13.0", path = "../askama_parser" }
2424

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

askama_escape/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_escape"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
description = "HTML escaping, extracted from Askama"
55
keywords = ["html", "escaping"]
66
categories = ["no-std", "no-std::no-alloc"]

askama_parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_parser"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
description = "Parser for Askama templates"
55
documentation = "https://docs.rs/askama"
66
keywords = ["markup", "template", "jinja2", "html"]

bench-build/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "bench-build"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
authors = ["askama-rs developers"]
55
edition = "2021"
66
rust-version = "1.81"
77
publish = false
88

99
[dependencies]
10-
askama = { path = "../askama", version = "0.13.0-pre.0", default-features = false, features = ["std"] }
11-
askama_derive = { path = "../askama_derive", version = "0.13.0-pre.0", features = ["std"] }
10+
askama = { path = "../askama", version = "0.13.0", default-features = false, features = ["std"] }
11+
askama_derive = { path = "../askama_derive", version = "0.13.0", features = ["std"] }
1212

1313
[features]
1414
default = []

bench-build/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ Without the feature, `cargo` will be able to compile more dependencies in parall
4141
```toml
4242
# Cargo.toml
4343
[dependencies]
44-
askama = { version = "0.13.0-pre.0", default-features = false, features = ["std"] }
45-
askama_derive = { version = "0.13.0-pre.0", features = ["std"] }
44+
askama = { version = "0.13.0", default-features = false, features = ["std"] }
45+
askama_derive = { version = "0.13.0", features = ["std"] }
4646
```
4747

4848
```rust

examples/actix-web-app/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-web-app"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false
@@ -9,7 +9,7 @@ publish = false
99
# and actix-web as your web-framework.
1010
[dependencies]
1111
actix-web = { version = "4.9.0", default-features = false, features = ["macros"] }
12-
askama = { version = "0.13.0-pre.0", path = "../../askama" }
12+
askama = { version = "0.13.0", path = "../../askama" }
1313
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
1414

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

examples/axum-app/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "axum-app"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false
77

88
# This is an example application that uses both askama as template engine,
99
# and axum as your web-framework.
1010
[dependencies]
11-
askama = { version = "0.13.0-pre.0", path = "../../askama" }
11+
askama = { version = "0.13.0", path = "../../askama" }
1212
axum = "0.8.1"
1313
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
1414

examples/poem-app/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "poem-app"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false
77

88
# This is an example application that uses both askama as template engine,
99
# and poem as your web-framework.
1010
[dependencies]
11-
askama = { version = "0.13.0-pre.0", path = "../../askama" }
11+
askama = { version = "0.13.0", path = "../../askama" }
1212
poem = "3.1.6"
1313
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
1414

examples/rocket-app/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "actix-web-app"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false
77

88
# This is an example application that uses both askama as template engine,
99
# and rocket as your web-framework.
1010
[dependencies]
11-
askama = { version = "0.13.0-pre.0", path = "../../askama" }
11+
askama = { version = "0.13.0", path = "../../askama" }
1212
rocket = "0.5.1"
1313

1414
# strum is used to parse and serialize information between web requests,

examples/salvo-app/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "salvo-app"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false
77

88
# This is an example application that uses both askama as template engine,
99
# and salvo as your web-framework.
1010
[dependencies]
11-
askama = { version = "0.13.0-pre.0", path = "../../askama" }
11+
askama = { version = "0.13.0", path = "../../askama" }
1212
salvo = { version = "0.76.0", default-features = false, features = ["http1", "logging", "server"] }
1313
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
1414

examples/warp-app/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "actix-web-app"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false
77

88
# This is an example application that uses both askama as template engine,
99
# and actix-web as your web-framework.
1010
[dependencies]
11-
askama = { version = "0.13.0-pre.0", path = "../../askama" }
11+
askama = { version = "0.13.0", path = "../../askama" }
1212
http = "0.2.12"
1313
tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] }
1414
warp = "0.3.7"

testing-alloc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "askama_testing-alloc"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
authors = ["askama-rs developers"]
55
edition = "2021"
66
rust-version = "1.81"
77
publish = false
88

99
[dev-dependencies]
10-
askama = { path = "../askama", version = "0.13.0-pre.0", default-features = false, features = ["alloc", "derive"] }
10+
askama = { path = "../askama", version = "0.13.0", default-features = false, features = ["alloc", "derive"] }
1111

1212
assert_matches = "1.5.0"

testing-no-std/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "askama_testing-no-std"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
authors = ["askama-rs developers"]
55
edition = "2021"
66
rust-version = "1.81"
77
publish = false
88

99
[dev-dependencies]
10-
askama = { path = "../askama", version = "0.13.0-pre.0", default-features = false, features = ["derive"] }
10+
askama = { path = "../askama", version = "0.13.0", default-features = false, features = ["derive"] }
1111

1212
assert_matches = "1.5.0"

testing-renamed/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "askama_testing-renamed"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
authors = ["askama-rs developers"]
55
edition = "2021"
66
rust-version = "1.81"
77
publish = false
88

99
[dev-dependencies]
10-
some_name = { package = "askama", path = "../askama", version = "0.13.0-pre.0", default-features = false, features = ["derive"] }
10+
some_name = { package = "askama", path = "../askama", version = "0.13.0", default-features = false, features = ["derive"] }
1111

1212
assert_matches = "1.5.0"

testing/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_testing"
3-
version = "0.13.0-pre.0"
3+
version = "0.13.0"
44
authors = ["askama-rs developers"]
55
edition = "2021"
66
rust-version = "1.81"
@@ -15,15 +15,15 @@ name = "normalize_identifier"
1515
harness = false
1616

1717
[dependencies]
18-
askama = { path = "../askama", version = "0.13.0-pre.0" }
18+
askama = { path = "../askama", version = "0.13.0" }
1919

2020
serde_json = { version = "1.0", optional = true }
2121

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

2525
[dev-dependencies]
26-
askama = { path = "../askama", version = "0.13.0-pre.0", features = ["blocks", "code-in-doc", "serde_json"] }
26+
askama = { path = "../askama", version = "0.13.0", features = ["blocks", "code-in-doc", "serde_json"] }
2727

2828
assert_matches = "1.5.0"
2929
criterion = "0.5"

0 commit comments

Comments
 (0)