Skip to content

Commit

Permalink
Bump to 0.10.1. (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmjoy authored Jan 7, 2023
1 parent ca9e281 commit b3e7f33
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ members = [
]

[workspace.package]
version = "0.10.0"
version = "0.10.1"
authors = ["PHPER Framework Team", "jmjoy <[email protected]>"]
edition = "2021"
license = "MulanPSL-2.0"
Expand Down
6 changes: 3 additions & 3 deletions examples/complex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion examples/hello/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
4 changes: 2 additions & 2 deletions examples/http-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
4 changes: 2 additions & 2 deletions examples/http-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions examples/logging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
4 changes: 2 additions & 2 deletions phper-alloc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion phper-build/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
2 changes: 1 addition & 1 deletion phper-doc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion phper-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
10 changes: 5 additions & 5 deletions phper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
4 changes: 2 additions & 2 deletions tests/integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit b3e7f33

Please sign in to comment.