Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version numbers to v0.3.0 #107

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/actix-web-app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "actix-web-app"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
Expand All @@ -10,7 +10,7 @@ publish = false
# and actix-web as your web-framework.
# 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!
rinja_actix = { version = "0.2.0", path = "../../rinja_actix" }
rinja_actix = { version = "0.3.0", path = "../../rinja_actix" }
actix-web = { version = "4.8.0", default-features = false, features = ["macros"] }
tokio = { version = "1.38.0", features = ["sync", "rt-multi-thread"] }

Expand Down
4 changes: 2 additions & 2 deletions rinja/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinja"
version = "0.2.0"
version = "0.3.0"
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"]
Expand Down Expand Up @@ -32,7 +32,7 @@ with-rocket = ["rinja_derive/with-rocket"]
with-warp = ["rinja_derive/with-warp"]

[dependencies]
rinja_derive = { version = "0.2.0", path = "../rinja_derive" }
rinja_derive = { version = "=0.3.0", path = "../rinja_derive" }
GuillaumeGomez marked this conversation as resolved.
Show resolved Hide resolved

itoa = "1.0.11"

Expand Down
4 changes: 2 additions & 2 deletions rinja_actix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinja_actix"
version = "0.2.0"
version = "0.3.0"
description = "Actix-Web integration for Rinja templates"
documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"]
Expand All @@ -13,7 +13,7 @@ edition = "2021"
rust-version = "1.71"

[dependencies]
rinja = { version = "0.2.0", path = "../rinja", default-features = false, features = ["with-actix-web"] }
rinja = { version = "0.3.0", path = "../rinja", default-features = false, features = ["with-actix-web"] }
actix-web = { version = "4", default-features = false }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions rinja_axum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinja_axum"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
rust-version = "1.71"
description = "Axum integration for Rinja templates"
Expand All @@ -13,7 +13,7 @@ license = "MIT OR Apache-2.0"
readme = "README.md"

[dependencies]
rinja = { version = "0.2.0", path = "../rinja", default-features = false, features = ["with-axum"] }
rinja = { version = "0.3.0", path = "../rinja", default-features = false, features = ["with-axum"] }
axum-core = "0.4"
http = "1.0"

Expand Down
5 changes: 3 additions & 2 deletions rinja_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinja_derive"
version = "0.2.0"
version = "0.3.0"
description = "Procedural macro package for Rinja"
homepage = "https://github.com/rinja-rs/rinja"
repository = "https://github.com/rinja-rs/rinja"
Expand All @@ -25,7 +25,8 @@ with-rocket = []
with-warp = []

[dependencies]
parser = { package = "rinja_parser", version = "0.2.0", path = "../rinja_parser" }
parser = { package = "rinja_parser", version = "=0.3.0", path = "../rinja_parser" }
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here and below.


basic-toml = { version = "0.1.1", optional = true }
memchr = "2"
mime = "0.3"
Expand Down
5 changes: 3 additions & 2 deletions rinja_derive_standalone/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinja_derive_standalone"
version = "0.2.0"
version = "0.3.0"
description = "Procedural macro package for Rinja"
homepage = "https://github.com/rinja-rs/rinja"
repository = "https://github.com/rinja-rs/rinja"
Expand All @@ -24,7 +24,8 @@ with-rocket = []
with-warp = []

[dependencies]
parser = { package = "rinja_parser", version = "0.2.0", path = "../rinja_parser" }
parser = { package = "rinja_parser", version = "=0.3.0", path = "../rinja_parser" }

basic-toml = { version = "0.1.1", optional = true }
memchr = "2"
mime = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion rinja_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinja_parser"
version = "0.2.0"
version = "0.3.0"
description = "Parser for Rinja templates"
documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"]
Expand Down
4 changes: 2 additions & 2 deletions rinja_rocket/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinja_rocket"
version = "0.2.0"
version = "0.3.0"
description = "Rocket integration for Rinja templates"
documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"]
Expand All @@ -13,7 +13,7 @@ edition = "2021"
rust-version = "1.71"

[dependencies]
rinja = { version = "0.2.0", path = "../rinja", default-features = false, features = ["with-rocket"] }
rinja = { version = "0.3.0", path = "../rinja", default-features = false, features = ["with-rocket"] }
rocket = { version = "0.5", default-features = false }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions rinja_warp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinja_warp"
version = "0.2.0"
version = "0.3.0"
description = "Warp integration for Rinja templates"
documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"]
Expand All @@ -13,7 +13,7 @@ edition = "2021"
rust-version = "1.71"

[dependencies]
rinja = { version = "0.2.0", path = "../rinja", default-features = false, features = ["with-warp"] }
rinja = { version = "0.3.0", path = "../rinja", default-features = false, features = ["with-warp"] }
warp = { version = "0.3", default-features = false }

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinja_testing"
version = "0.2.0"
version = "0.3.0"
authors = ["rinja-rs developers"]
workspace = ".."
edition = "2021"
Expand All @@ -12,11 +12,11 @@ default = ["serde_json"]
serde_json = ["dep:serde_json", "rinja/serde_json"]

[dependencies]
rinja = { path = "../rinja", version = "0.2.0" }
rinja = { path = "../rinja", version = "0.3.0" }
serde_json = { version = "1.0", optional = true }

[dev-dependencies]
rinja = { path = "../rinja", version = "0.2.0", features = ["serde_json"] }
rinja = { path = "../rinja", version = "0.3.0", features = ["serde_json"] }
criterion = "0.5"
phf = { version = "0.11", features = ["macros" ]}
trybuild = "1.0.76"
Expand Down