From 5c4aceb93bd3106ab25e1b72a3116bfaf11134b8 Mon Sep 17 00:00:00 2001 From: jmjoy Date: Sat, 10 Dec 2022 11:13:47 +0800 Subject: [PATCH] Bump to 0.8.0. --- Cargo.toml | 2 +- examples/complex/Cargo.toml | 6 +++--- examples/hello/Cargo.toml | 2 +- examples/http-client/Cargo.toml | 4 ++-- examples/http-server/Cargo.toml | 4 ++-- examples/logging/Cargo.toml | 6 +++--- phper-alloc/Cargo.toml | 4 ++-- phper-build/Cargo.toml | 2 +- phper-doc/Cargo.toml | 2 +- phper-test/Cargo.toml | 2 +- phper/Cargo.toml | 10 +++++----- tests/integration/Cargo.toml | 4 ++-- 12 files changed, 24 insertions(+), 24 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 36d41df1..9c383873 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ members = [ ] [workspace.package] -version = "0.7.0" +version = "0.8.0" authors = ["PHPER Framework Team", "jmjoy "] edition = "2021" license = "MulanPSL-2.0" diff --git a/examples/complex/Cargo.toml b/examples/complex/Cargo.toml index 15de97fe..507ecd24 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.7.0", path = "../../phper" } +phper = { version = "0.8.0", path = "../../phper" } [dev-dependencies] -phper-test = { version = "0.7.0", path = "../../phper-test" } +phper-test = { version = "0.8.0", path = "../../phper-test" } [build-dependencies] -phper-build = { version = "0.7.0", path = "../../phper-build" } +phper-build = { version = "0.8.0", path = "../../phper-build" } diff --git a/examples/hello/Cargo.toml b/examples/hello/Cargo.toml index a404c24e..77c8146d 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.7.0", path = "../../phper" } +phper = { version = "0.8.0", path = "../../phper" } diff --git a/examples/http-client/Cargo.toml b/examples/http-client/Cargo.toml index 06975e8e..7451276c 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.7.0", path = "../../phper" } +phper = { version = "0.8.0", path = "../../phper" } reqwest = { version = "0.11.13", features = ["blocking", "cookies"] } thiserror = "1.0.37" [dev-dependencies] -phper-test = { version = "0.7.0", path = "../../phper-test" } +phper-test = { version = "0.8.0", path = "../../phper-test" } diff --git a/examples/http-server/Cargo.toml b/examples/http-server/Cargo.toml index ef6c5b71..154f3a8c 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.7.0", path = "../../phper" } +phper = { version = "0.8.0", path = "../../phper" } thiserror = "1.0.37" tokio = { version = "1.22.0", features = ["full"] } [dev-dependencies] -phper-test = { version = "0.7.0", path = "../../phper-test" } +phper-test = { version = "0.8.0", path = "../../phper-test" } reqwest = "0.11.13" diff --git a/examples/logging/Cargo.toml b/examples/logging/Cargo.toml index 77d6a051..0f088a10 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.7.0", path = "../../phper" } +phper = { version = "0.8.0", path = "../../phper" } [dev-dependencies] -phper-test = { version = "0.7.0", path = "../../phper-test" } +phper-test = { version = "0.8.0", path = "../../phper-test" } [build-dependencies] -phper-build = { version = "0.7.0", path = "../../phper-build" } +phper-build = { version = "0.8.0", path = "../../phper-build" } diff --git a/phper-alloc/Cargo.toml b/phper-alloc/Cargo.toml index c7bd745e..1d1025c2 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.7.0", path = "../phper-sys" } +phper-sys = { version = "0.8.0", path = "../phper-sys" } [build-dependencies] -phper-build = { version = "0.7.0", path = "../phper-build" } +phper-build = { version = "0.8.0", path = "../phper-build" } diff --git a/phper-build/Cargo.toml b/phper-build/Cargo.toml index 35f4e1da..1a54f6c9 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.7.0", path = "../phper-sys" } +phper-sys = { version = "0.8.0", path = "../phper-sys" } diff --git a/phper-doc/Cargo.toml b/phper-doc/Cargo.toml index 782e2deb..c2d3e65c 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.7.0", path = "../phper" } +phper = { version = "0.8.0", path = "../phper" } [dev-dependencies] thiserror = "1.0.37" diff --git a/phper-test/Cargo.toml b/phper-test/Cargo.toml index 0fa47948..16acdee7 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.7.0", path = "../phper-macros" } +phper-macros = { version = "0.8.0", 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 cc29c8e6..1c445eb0 100644 --- a/phper/Cargo.toml +++ b/phper/Cargo.toml @@ -26,11 +26,11 @@ dashmap = "5.4.0" derive_more = "0.99.17" indexmap = "1.9.2" once_cell = "1.16.0" -phper-alloc = { version = "0.7.0", path = "../phper-alloc" } -phper-macros = { version = "0.7.0", path = "../phper-macros" } -phper-sys = { version = "0.7.0", path = "../phper-sys" } +phper-alloc = { version = "0.8.0", path = "../phper-alloc" } +phper-macros = { version = "0.8.0", path = "../phper-macros" } +phper-sys = { version = "0.8.0", path = "../phper-sys" } thiserror = "1.0.37" [build-dependencies] -phper-build = { version = "0.7.0", path = "../phper-build" } -phper-sys = { version = "0.7.0", path = "../phper-sys" } +phper-build = { version = "0.8.0", path = "../phper-build" } +phper-sys = { version = "0.8.0", path = "../phper-sys" } diff --git a/tests/integration/Cargo.toml b/tests/integration/Cargo.toml index 394597cf..d2c581e6 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.7.0", path = "../../phper" } +phper = { version = "0.8.0", path = "../../phper" } [dev-dependencies] -phper-test = { version = "0.7.0", path = "../../phper-test", features = ["fpm"] } +phper-test = { version = "0.8.0", path = "../../phper-test", features = ["fpm"] }