Skip to content

Commit

Permalink
Reset all version numbers to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kijewski committed Jul 9, 2024
1 parent 4ba6729 commit 277cff4
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 21 deletions.
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.1.0"
version = "0.2.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.15.0", path = "../../rinja_actix" }
rinja_actix = { version = "0.2.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
6 changes: 3 additions & 3 deletions rinja/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rinja"
version = "0.13.0"
version = "0.2.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,11 +32,11 @@ with-rocket = ["rinja_derive/with-rocket"]
with-warp = ["rinja_derive/with-warp"]

[dependencies]
rinja_derive = { version = "0.13", path = "../rinja_derive" }
rinja_derive = { version = "0.2.0", path = "../rinja_derive" }
humansize = { version = "2", optional = true }
num-traits = { version = "0.2.6", optional = true }
percent-encoding = { version = "2.1.0", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }

[dev-dependencies]
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.15.0"
version = "0.2.0"
description = "Actix-Web integration for Rinja templates"
documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"]
Expand All @@ -14,8 +14,8 @@ edition = "2021"
rust-version = "1.65"

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

[dev-dependencies]
actix-rt = { version = "2", default-features = false }
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.5.0"
version = "0.2.0"
edition = "2021"
rust-version = "1.65"
description = "Axum integration for Rinja templates"
Expand All @@ -14,7 +14,7 @@ workspace = ".."
readme = "README.md"

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

Expand Down
4 changes: 2 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.13.0"
version = "0.2.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,7 @@ with-rocket = []
with-warp = []

[dependencies]
parser = { package = "rinja_parser", version = "0.3", path = "../rinja_parser" }
parser = { package = "rinja_parser", version = "0.2.0", path = "../rinja_parser" }
mime = "0.3"
mime_guess = "2"
proc-macro2 = "1"
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.13.0"
version = "0.2.0"
description = "Procedural macro package for Rinja"
homepage = "https://github.com/rinja-rs/rinja"
repository = "https://github.com/rinja-rs/rinja"
Expand All @@ -9,6 +9,7 @@ workspace = ".."
readme = "README.md"
edition = "2021"
rust-version = "1.65"
publish = false

[features]
default = ["__standalone"]
Expand All @@ -24,7 +25,7 @@ with-rocket = []
with-warp = []

[dependencies]
parser = { package = "rinja_parser", version = "0.3", path = "../rinja_parser" }
parser = { package = "rinja_parser", version = "0.2.0", path = "../rinja_parser" }
mime = "0.3"
mime_guess = "2"
proc-macro2 = "1"
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.3.0"
version = "0.2.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.13.0"
version = "0.2.0"
description = "Rocket integration for Rinja templates"
documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"]
Expand All @@ -14,7 +14,7 @@ edition = "2021"
rust-version = "1.65"

[dependencies]
rinja = { version = "0.13", path = "../rinja", default-features = false, features = ["with-rocket"] }
rinja = { version = "0.2.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.14.0"
version = "0.2.0"
description = "Warp integration for Rinja templates"
documentation = "https://docs.rs/rinja"
keywords = ["markup", "template", "jinja2", "html"]
Expand All @@ -14,7 +14,7 @@ edition = "2021"
rust-version = "1.65"

[dependencies]
rinja = { version = "0.13", path = "../rinja", default-features = false, features = ["with-warp"] }
rinja = { version = "0.2.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.1.0"
version = "0.2.0"
authors = ["Dirkjan Ochtman <[email protected]>"]
workspace = ".."
edition = "2021"
Expand All @@ -12,12 +12,12 @@ default = ["serde_json"]
serde_json = ["dep:serde_json", "rinja/serde_json"]

[dependencies]
rinja = { path = "../rinja", version = "0.13" }
rinja = { path = "../rinja", version = "0.2.0" }
phf = { version = "0.11", features = ["macros" ]}
serde_json = { version = "1.0", optional = true }

[dev-dependencies]
rinja = { path = "../rinja", version = "0.13", features = ["serde_json"] }
rinja = { path = "../rinja", version = "0.2.0", features = ["serde_json"] }
criterion = "0.5"
trybuild = "1.0.76"

Expand Down

0 comments on commit 277cff4

Please sign in to comment.