diff --git a/Cargo.toml b/Cargo.toml index 5df3fd9..9e8ce9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ members = [ ] [workspace.package] -version = "0.10.0" +version = "0.10.1" authors = ["PHPER Framework Team", "jmjoy "] edition = "2021" license = "MulanPSL-2.0" diff --git a/examples/complex/Cargo.toml b/examples/complex/Cargo.toml index 06bd3be..8374561 100644 --- a/examples/complex/Cargo.toml +++ b/examples/complex/Cargo.toml @@ -21,10 +21,10 @@ license = { workspace = true } crate-type = ["lib", "cdylib"] [dependencies] -phper = { version = "0.10.0", path = "../../phper" } +phper = { version = "0.10.1", path = "../../phper" } [dev-dependencies] -phper-test = { version = "0.10.0", path = "../../phper-test" } +phper-test = { version = "0.10.1", path = "../../phper-test" } [build-dependencies] -phper-build = { version = "0.10.0", path = "../../phper-build" } +phper-build = { version = "0.10.1", path = "../../phper-build" } diff --git a/examples/hello/Cargo.toml b/examples/hello/Cargo.toml index ca7edfa..bddc0e6 100644 --- a/examples/hello/Cargo.toml +++ b/examples/hello/Cargo.toml @@ -21,4 +21,4 @@ license = { workspace = true } crate-type = ["lib", "cdylib"] [dependencies] -phper = { version = "0.10.0", path = "../../phper" } +phper = { version = "0.10.1", path = "../../phper" } diff --git a/examples/http-client/Cargo.toml b/examples/http-client/Cargo.toml index 03b2c9b..c896cb3 100644 --- a/examples/http-client/Cargo.toml +++ b/examples/http-client/Cargo.toml @@ -21,9 +21,9 @@ license = { workspace = true } crate-type = ["lib", "cdylib"] [dependencies] -phper = { version = "0.10.0", path = "../../phper" } +phper = { version = "0.10.1", path = "../../phper" } reqwest = { version = "0.11.13", features = ["blocking", "cookies"] } thiserror = "1.0.37" [dev-dependencies] -phper-test = { version = "0.10.0", path = "../../phper-test" } +phper-test = { version = "0.10.1", path = "../../phper-test" } diff --git a/examples/http-server/Cargo.toml b/examples/http-server/Cargo.toml index 8e79a56..e0ab141 100644 --- a/examples/http-server/Cargo.toml +++ b/examples/http-server/Cargo.toml @@ -22,10 +22,10 @@ crate-type = ["lib", "cdylib"] [dependencies] hyper = { version = "0.14.23", features = ["http1", "runtime", "server"] } -phper = { version = "0.10.0", path = "../../phper" } +phper = { version = "0.10.1", path = "../../phper" } thiserror = "1.0.37" tokio = { version = "1.22.0", features = ["full"] } [dev-dependencies] -phper-test = { version = "0.10.0", path = "../../phper-test" } +phper-test = { version = "0.10.1", path = "../../phper-test" } reqwest = "0.11.13" diff --git a/examples/logging/Cargo.toml b/examples/logging/Cargo.toml index 3a8a164..c3c8624 100644 --- a/examples/logging/Cargo.toml +++ b/examples/logging/Cargo.toml @@ -21,10 +21,10 @@ license = { workspace = true } crate-type = ["lib", "cdylib"] [dependencies] -phper = { version = "0.10.0", path = "../../phper" } +phper = { version = "0.10.1", path = "../../phper" } [dev-dependencies] -phper-test = { version = "0.10.0", path = "../../phper-test" } +phper-test = { version = "0.10.1", path = "../../phper-test" } [build-dependencies] -phper-build = { version = "0.10.0", path = "../../phper-build" } +phper-build = { version = "0.10.1", path = "../../phper-build" } diff --git a/phper-alloc/Cargo.toml b/phper-alloc/Cargo.toml index 4f17ee7..7be3c61 100644 --- a/phper-alloc/Cargo.toml +++ b/phper-alloc/Cargo.toml @@ -20,7 +20,7 @@ repository = { workspace = true } license = { workspace = true } [dependencies] -phper-sys = { version = "0.10.0", path = "../phper-sys" } +phper-sys = { version = "0.10.1", path = "../phper-sys" } [build-dependencies] -phper-build = { version = "0.10.0", path = "../phper-build" } +phper-build = { version = "0.10.1", path = "../phper-build" } diff --git a/phper-build/Cargo.toml b/phper-build/Cargo.toml index cc5b6b3..b4f146e 100644 --- a/phper-build/Cargo.toml +++ b/phper-build/Cargo.toml @@ -20,4 +20,4 @@ repository = { workspace = true } license = { workspace = true } [dependencies] -phper-sys = { version = "0.10.0", path = "../phper-sys" } +phper-sys = { version = "0.10.1", path = "../phper-sys" } diff --git a/phper-doc/Cargo.toml b/phper-doc/Cargo.toml index 9c91f70..869d809 100644 --- a/phper-doc/Cargo.toml +++ b/phper-doc/Cargo.toml @@ -20,7 +20,7 @@ repository = { workspace = true } license = { workspace = true } [dependencies] -phper = { version = "0.10.0", path = "../phper" } +phper = { version = "0.10.1", path = "../phper" } [dev-dependencies] thiserror = "1.0.37" diff --git a/phper-test/Cargo.toml b/phper-test/Cargo.toml index e86b862..f4e272b 100644 --- a/phper-test/Cargo.toml +++ b/phper-test/Cargo.toml @@ -26,7 +26,7 @@ fpm = ["fastcgi-client", "tokio/full"] fastcgi-client = { version = "0.8.0", optional = true } libc = "0.2.137" once_cell = "1.16.0" -phper-macros = { version = "0.10.0", path = "../phper-macros" } +phper-macros = { version = "0.10.1", path = "../phper-macros" } tempfile = "3.3.0" tokio = { version = "1.22.0", optional = true } diff --git a/phper/Cargo.toml b/phper/Cargo.toml index 35dc0f1..1a57cec 100644 --- a/phper/Cargo.toml +++ b/phper/Cargo.toml @@ -25,11 +25,11 @@ license = { workspace = true } derive_more = "0.99.17" indexmap = "1.9.2" once_cell = "1.16.0" -phper-alloc = { version = "0.10.0", path = "../phper-alloc" } -phper-macros = { version = "0.10.0", path = "../phper-macros" } -phper-sys = { version = "0.10.0", path = "../phper-sys" } +phper-alloc = { version = "0.10.1", path = "../phper-alloc" } +phper-macros = { version = "0.10.1", path = "../phper-macros" } +phper-sys = { version = "0.10.1", path = "../phper-sys" } thiserror = "1.0.37" [build-dependencies] -phper-build = { version = "0.10.0", path = "../phper-build" } -phper-sys = { version = "0.10.0", path = "../phper-sys" } +phper-build = { version = "0.10.1", path = "../phper-build" } +phper-sys = { version = "0.10.1", path = "../phper-sys" } diff --git a/tests/integration/Cargo.toml b/tests/integration/Cargo.toml index a8f231b..61599d0 100644 --- a/tests/integration/Cargo.toml +++ b/tests/integration/Cargo.toml @@ -22,7 +22,7 @@ crate-type = ["lib", "cdylib"] [dependencies] indexmap = "1.9.2" -phper = { version = "0.10.0", path = "../../phper" } +phper = { version = "0.10.1", path = "../../phper" } [dev-dependencies] -phper-test = { version = "0.10.0", path = "../../phper-test", features = ["fpm"] } +phper-test = { version = "0.10.1", path = "../../phper-test", features = ["fpm"] }