Skip to content

Commit 2e76332

Browse files
committed
Dump to 0.4.0-alpha.3.
1 parent 16acb4e commit 2e76332

File tree

11 files changed

+27
-27
lines changed

11 files changed

+27
-27
lines changed

examples/hello/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ path = "src/_reexport.rs"
1919
crate-type = ["cdylib"]
2020

2121
[dependencies]
22-
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
22+
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
2323

2424
[dev-dependencies]
25-
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test" }
25+
phper-test = { version = "0.4.0-alpha.3", path = "../../phper-test" }
2626

2727
[build-dependencies]
28-
phper-build = { version = "0.4.0-alpha.2", path = "../../phper-build" }
28+
phper-build = { version = "0.4.0-alpha.3", path = "../../phper-build" }

examples/http-client/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ crate-type = ["cdylib"]
2222
anyhow = "1.0.58"
2323
bytes = "1.1.0"
2424
indexmap = "1.9.0"
25-
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
25+
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
2626
reqwest = { version = "0.11.11", features = ["blocking", "cookies"] }
2727
thiserror = "1.0.31"
2828

2929
[dev-dependencies]
30-
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test" }
30+
phper-test = { version = "0.4.0-alpha.3", path = "../../phper-test" }

examples/http-server/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ crate-type = ["cdylib"]
2020

2121
[dependencies]
2222
hyper = { version = "0.14.19", features = ["http1", "runtime", "server"] }
23-
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
23+
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
2424
thiserror = "1.0.31"
2525
tokio = { version = "1.19.2", features = ["full"] }
2626

2727
[dev-dependencies]
28-
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test" }
28+
phper-test = { version = "0.4.0-alpha.3", path = "../../phper-test" }
2929
reqwest = "0.11.11"

examples/logging/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ crate-type = ["cdylib"]
2020

2121
[dependencies]
2222
anyhow = "1.0.58"
23-
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
23+
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
2424

2525
[dev-dependencies]
26-
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test" }
26+
phper-test = { version = "0.4.0-alpha.3", path = "../../phper-test" }
2727

2828
[build-dependencies]
29-
phper-build = { version = "0.4.0-alpha.2", path = "../../phper-build" }
29+
phper-build = { version = "0.4.0-alpha.3", path = "../../phper-build" }

phper-alloc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper-alloc"
3-
version = "0.4.0-alpha.2"
3+
version = "0.4.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.56"
@@ -12,7 +12,7 @@ keywords = ["php", "alloc"]
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
phper-sys = { version = "0.4.0-alpha.2", path = "../phper-sys" }
15+
phper-sys = { version = "0.4.0-alpha.3", path = "../phper-sys" }
1616

1717
[build-dependencies]
18-
phper-build = { version = "0.4.0-alpha.2", path = "../phper-build" }
18+
phper-build = { version = "0.4.0-alpha.3", path = "../phper-build" }

phper-build/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper-build"
3-
version = "0.4.0-alpha.2"
3+
version = "0.4.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.56"
@@ -12,4 +12,4 @@ keywords = ["php", "binding"]
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
phper-sys = { version = "0.4.0-alpha.2", path = "../phper-sys" }
15+
phper-sys = { version = "0.4.0-alpha.3", path = "../phper-sys" }

phper-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper-macros"
3-
version = "0.4.0-alpha.2"
3+
version = "0.4.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.56"

phper-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper-sys"
3-
version = "0.4.0-alpha.2"
3+
version = "0.4.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.56"

phper-test/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper-test"
3-
version = "0.4.0-alpha.2"
3+
version = "0.4.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.56"
@@ -18,7 +18,7 @@ fpm = ["fastcgi-client", "tokio/full"]
1818
fastcgi-client = { version = "0.7.0", optional = true }
1919
libc = "0.2.126"
2020
once_cell = "1.12.0"
21-
phper-macros = { version = "0.4.0-alpha.2", path = "../phper-macros" }
21+
phper-macros = { version = "0.4.0-alpha.3", path = "../phper-macros" }
2222
tempfile = "3.3.0"
2323
tokio = { version = "1.19.2", optional = true }
2424

phper/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper"
3-
version = "0.4.0-alpha.2"
3+
version = "0.4.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.56"
@@ -20,11 +20,11 @@ dashmap = "5.3.4"
2020
derive_more = "0.99.17"
2121
indexmap = "1.9.0"
2222
once_cell = "1.12.0"
23-
phper-alloc = { version = "0.4.0-alpha.2", path = "../phper-alloc" }
24-
phper-macros = { version = "0.4.0-alpha.2", path = "../phper-macros" }
25-
phper-sys = { version = "0.4.0-alpha.2", path = "../phper-sys" }
23+
phper-alloc = { version = "0.4.0-alpha.3", path = "../phper-alloc" }
24+
phper-macros = { version = "0.4.0-alpha.3", path = "../phper-macros" }
25+
phper-sys = { version = "0.4.0-alpha.3", path = "../phper-sys" }
2626
thiserror = "1.0.31"
2727

2828
[build-dependencies]
29-
phper-build = { version = "0.4.0-alpha.2", path = "../phper-build" }
30-
phper-sys = { version = "0.4.0-alpha.2", path = "../phper-sys" }
29+
phper-build = { version = "0.4.0-alpha.3", path = "../phper-build" }
30+
phper-sys = { version = "0.4.0-alpha.3", path = "../phper-sys" }

tests/integration/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ crate-type = ["cdylib"]
1818

1919
[dependencies]
2020
indexmap = "1.9.0"
21-
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
21+
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
2222

2323
[dev-dependencies]
24-
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test", features = ["fpm"] }
24+
phper-test = { version = "0.4.0-alpha.3", path = "../../phper-test", features = ["fpm"] }

0 commit comments

Comments
 (0)