Skip to content

Commit 8f95f3e

Browse files
authored
Bump to 0.4.0-alpha.4. (#34)
1 parent 994ed89 commit 8f95f3e

File tree

11 files changed

+27
-27
lines changed

11 files changed

+27
-27
lines changed

examples/hello/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ path = "src/_reexport.rs"
2929
crate-type = ["cdylib"]
3030

3131
[dependencies]
32-
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
32+
phper = { version = "0.4.0-alpha.4", path = "../../phper" }
3333

3434
[dev-dependencies]
35-
phper-test = { version = "0.4.0-alpha.3", path = "../../phper-test" }
35+
phper-test = { version = "0.4.0-alpha.4", path = "../../phper-test" }
3636

3737
[build-dependencies]
38-
phper-build = { version = "0.4.0-alpha.3", path = "../../phper-build" }
38+
phper-build = { version = "0.4.0-alpha.4", path = "../../phper-build" }

examples/http-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ crate-type = ["cdylib"]
3232
anyhow = "1.0.58"
3333
bytes = "1.1.0"
3434
indexmap = "1.9.1"
35-
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
35+
phper = { version = "0.4.0-alpha.4", path = "../../phper" }
3636
reqwest = { version = "0.11.11", features = ["blocking", "cookies"] }
3737
thiserror = "1.0.31"
3838

3939
[dev-dependencies]
40-
phper-test = { version = "0.4.0-alpha.3", path = "../../phper-test" }
40+
phper-test = { version = "0.4.0-alpha.4", path = "../../phper-test" }

examples/http-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ crate-type = ["cdylib"]
3030

3131
[dependencies]
3232
hyper = { version = "0.14.20", features = ["http1", "runtime", "server"] }
33-
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
33+
phper = { version = "0.4.0-alpha.4", path = "../../phper" }
3434
thiserror = "1.0.31"
3535
tokio = { version = "1.19.2", features = ["full"] }
3636

3737
[dev-dependencies]
38-
phper-test = { version = "0.4.0-alpha.3", path = "../../phper-test" }
38+
phper-test = { version = "0.4.0-alpha.4", path = "../../phper-test" }
3939
reqwest = "0.11.11"

examples/logging/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ crate-type = ["cdylib"]
3030

3131
[dependencies]
3232
anyhow = "1.0.58"
33-
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
33+
phper = { version = "0.4.0-alpha.4", path = "../../phper" }
3434

3535
[dev-dependencies]
36-
phper-test = { version = "0.4.0-alpha.3", path = "../../phper-test" }
36+
phper-test = { version = "0.4.0-alpha.4", path = "../../phper-test" }
3737

3838
[build-dependencies]
39-
phper-build = { version = "0.4.0-alpha.3", path = "../../phper-build" }
39+
phper-build = { version = "0.4.0-alpha.4", path = "../../phper-build" }

phper-alloc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "phper-alloc"
13-
version = "0.4.0-alpha.3"
13+
version = "0.4.0-alpha.4"
1414
authors = ["jmjoy <918734043@qq.com>"]
1515
edition = "2021"
1616
rust-version = "1.56"
@@ -22,7 +22,7 @@ keywords = ["php", "alloc"]
2222
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2323

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

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

phper-build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "phper-build"
13-
version = "0.4.0-alpha.3"
13+
version = "0.4.0-alpha.4"
1414
authors = ["jmjoy <918734043@qq.com>"]
1515
edition = "2021"
1616
rust-version = "1.56"
@@ -22,4 +22,4 @@ keywords = ["php", "binding"]
2222
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2323

2424
[dependencies]
25-
phper-sys = { version = "0.4.0-alpha.3", path = "../phper-sys" }
25+
phper-sys = { version = "0.4.0-alpha.4", path = "../phper-sys" }

phper-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "phper-macros"
13-
version = "0.4.0-alpha.3"
13+
version = "0.4.0-alpha.4"
1414
authors = ["jmjoy <918734043@qq.com>"]
1515
edition = "2021"
1616
rust-version = "1.56"

phper-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "phper-sys"
13-
version = "0.4.0-alpha.3"
13+
version = "0.4.0-alpha.4"
1414
authors = ["jmjoy <918734043@qq.com>"]
1515
edition = "2021"
1616
rust-version = "1.56"

phper-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "phper-test"
13-
version = "0.4.0-alpha.3"
13+
version = "0.4.0-alpha.4"
1414
authors = ["jmjoy <918734043@qq.com>"]
1515
edition = "2021"
1616
rust-version = "1.56"
@@ -28,7 +28,7 @@ fpm = ["fastcgi-client", "tokio/full"]
2828
fastcgi-client = { version = "0.7.0", optional = true }
2929
libc = "0.2.126"
3030
once_cell = "1.13.0"
31-
phper-macros = { version = "0.4.0-alpha.3", path = "../phper-macros" }
31+
phper-macros = { version = "0.4.0-alpha.4", path = "../phper-macros" }
3232
tempfile = "3.3.0"
3333
tokio = { version = "1.19.2", optional = true }
3434

phper/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[package]
1212
name = "phper"
13-
version = "0.4.0-alpha.3"
13+
version = "0.4.0-alpha.4"
1414
authors = ["jmjoy <918734043@qq.com>"]
1515
edition = "2021"
1616
rust-version = "1.56"
@@ -30,11 +30,11 @@ dashmap = "5.3.4"
3030
derive_more = "0.99.17"
3131
indexmap = "1.9.1"
3232
once_cell = "1.13.0"
33-
phper-alloc = { version = "0.4.0-alpha.3", path = "../phper-alloc" }
34-
phper-macros = { version = "0.4.0-alpha.3", path = "../phper-macros" }
35-
phper-sys = { version = "0.4.0-alpha.3", path = "../phper-sys" }
33+
phper-alloc = { version = "0.4.0-alpha.4", path = "../phper-alloc" }
34+
phper-macros = { version = "0.4.0-alpha.4", path = "../phper-macros" }
35+
phper-sys = { version = "0.4.0-alpha.4", path = "../phper-sys" }
3636
thiserror = "1.0.31"
3737

3838
[build-dependencies]
39-
phper-build = { version = "0.4.0-alpha.3", path = "../phper-build" }
40-
phper-sys = { version = "0.4.0-alpha.3", path = "../phper-sys" }
39+
phper-build = { version = "0.4.0-alpha.4", path = "../phper-build" }
40+
phper-sys = { version = "0.4.0-alpha.4", path = "../phper-sys" }

0 commit comments

Comments
 (0)