Skip to content

Commit

Permalink
bump: v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jondot committed Aug 7, 2024
1 parent 77f3a9a commit 412ab9c
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 20 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "Apache-2.0"

[package]
name = "loco-rs"
version = "0.6.2"
version = "0.7.0"
description = "The one-person framework for Rust"
homepage = "https://loco.rs/"
documentation = "https://docs.rs/loco-rs"
Expand Down
4 changes: 2 additions & 2 deletions examples/demo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"

[dependencies]

loco-rs = { version = "*", path = "../../" }
loco-rs = { path = "../../", version = "*" }
loco-extras = { version = "*", path = "../../loco-extras", features = ["full"] }
migration = { path = "migration" }

Expand Down Expand Up @@ -50,7 +50,7 @@ required-features = []
[dev-dependencies]
serial_test = "3.1.1"
rstest = "0.21.0"
loco-rs = { version = "*", path = "../../", features = ["testing"] }
loco-rs = { path = "../../", version = "*", features = ["testing"] }
trycmd = "0.14.19"
insta = { version = "1.34.0", features = ["redactions", "yaml", "filters"] }
loco-macros = { path = "../../macros" }
Expand Down
2 changes: 1 addition & 1 deletion examples/demo/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ path = "src/lib.rs"

[dependencies]
async-std = { version = "1", features = ["attributes", "tokio1"] }
loco-rs = { version = "*", path = "../../../" }
loco-rs = { path = "../../../", version = "*" }

[dependencies.sea-orm-migration]
version = "1.0.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/llm-candle-inference/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"

[dependencies]

loco-rs = { version = "*", path = "../../", default-features = false, features = [
loco-rs = { path = "../../", version = "*", default-features = false, features = [
"cli",
] }
serde = "1"
Expand Down Expand Up @@ -39,7 +39,7 @@ required-features = []
[dev-dependencies]
serial_test = "3.1.1"
rstest = "0.21.0"
loco-rs = { version = "*", path = "../../", default-features = false, features = [
loco-rs = { path = "../../", version = "*", default-features = false, features = [
"cli",
"testing",
] }
Expand Down
2 changes: 1 addition & 1 deletion loco-extras/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ mongodb = { version = "2.8.0", optional = true }

[dependencies.loco-rs]
path = "../"
version = "0.6.0"
version = "0.7.0"
default-features = true
features = ["with-db", "auth_jwt"]

Expand Down
2 changes: 1 addition & 1 deletion starters/lightweight-service/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions starters/lightweight-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,7 @@ publish = false

[dependencies]

loco-rs = { version = "*", path = "../../", default-features = false, features = [
"cli",
] }
loco-rs = { version = "0.7.0", default-features = false, features = ["cli"] }
serde = "*"
serde_json = "*"
tokio = { version = "1.33.0", default-features = false }
Expand All @@ -29,7 +27,7 @@ required-features = []
[dev-dependencies]
serial_test = "3.1.1"
rstest = "0.21.0"
loco-rs = { version = "*", path = "../../", default-features = false, features = [
loco-rs = { version = "0.7.0", default-features = false, features = [
"testing",
"cli",
] }
Expand Down
2 changes: 1 addition & 1 deletion starters/rest-api/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions starters/rest-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false

[dependencies]

loco-rs = { version = "*", path = "../../" }
loco-rs = { version = "0.7.0" }
migration = { path = "migration" }

serde = { version = "1", features = ["derive"] }
Expand Down Expand Up @@ -40,5 +40,5 @@ required-features = []
[dev-dependencies]
serial_test = "3.1.1"
rstest = "0.21.0"
loco-rs = { version = "*", path = "../../", features = ["testing"] }
loco-rs = { version = "0.7.0", features = ["testing"] }
insta = { version = "1.34.0", features = ["redactions", "yaml", "filters"] }
2 changes: 1 addition & 1 deletion starters/rest-api/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ path = "src/lib.rs"

[dependencies]
async-std = { version = "1", features = ["attributes", "tokio1"] }
loco-rs = { version = "*", path = "../../../" }
loco-rs = { version = "0.7.0" }

[dependencies.sea-orm-migration]
version = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion starters/saas/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions starters/saas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false

[dependencies]

loco-rs = { version = "*", path = "../../" }
loco-rs = { version = "0.7.0" }
migration = { path = "migration" }

serde = { version = "1", features = ["derive"] }
Expand Down Expand Up @@ -45,5 +45,5 @@ required-features = []
[dev-dependencies]
serial_test = "3.1.1"
rstest = "0.21.0"
loco-rs = { version = "*", path = "../../", features = ["testing"] }
loco-rs = { version = "0.7.0", features = ["testing"] }
insta = { version = "1.34.0", features = ["redactions", "yaml", "filters"] }
2 changes: 1 addition & 1 deletion starters/saas/migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ path = "src/lib.rs"

[dependencies]
async-std = { version = "1", features = ["attributes", "tokio1"] }
loco-rs = { version = "*", path = "../../../" }
loco-rs = { version = "0.7.0" }

[dependencies.sea-orm-migration]
version = "1.0.0"
Expand Down

0 comments on commit 412ab9c

Please sign in to comment.