Skip to content

Commit f8ee415

Browse files
committed
Update versions.
1 parent 7d141c3 commit f8ee415

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
@@ -13,10 +13,10 @@ license = "Unlicense"
1313
crate-type = ["cdylib"]
1414

1515
[dependencies]
16-
phper = { version = "0.4.0-alpha.1", path = "../../phper" }
16+
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
1717

1818
[dev-dependencies]
19-
phper-test = { version = "0.4.0-alpha.1", path = "../../phper-test" }
19+
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test" }
2020

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

examples/http-client/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ crate-type = ["cdylib"]
1616
anyhow = "1.0.40"
1717
bytes = "1.0.1"
1818
indexmap = "1.6.2"
19-
phper = { version = "0.4.0-alpha.1", path = "../../phper" }
19+
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
2020
reqwest = { version = "0.11.3", features = ["blocking", "cookies"] }
2121
thiserror = "1.0.24"
2222

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

examples/http-server/Cargo.toml

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

1515
[dependencies]
1616
hyper = { version = "0.14.8", features = ["http1", "runtime", "server"] }
17-
phper = { version = "0.4.0-alpha.1", path = "../../phper" }
17+
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
1818
thiserror = "1.0.24"
1919
tokio = { version = "1.6.0", features = ["full"] }
2020

2121
[dev-dependencies]
22-
phper-test = { version = "0.4.0-alpha.1", path = "../../phper-test" }
22+
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test" }
2323
reqwest = "0.11.3"

examples/logging/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ license = "Unlicense"
1313
crate-type = ["cdylib"]
1414

1515
[dependencies]
16-
phper = { version = "0.4.0-alpha.1", path = "../../phper" }
16+
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
1717

1818
[dev-dependencies]
19-
phper-test = { version = "0.4.0-alpha.1", path = "../../phper-test" }
19+
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test" }
2020

2121
[build-dependencies]
22-
phper-build = { version = "0.4.0-alpha.1", path = "../../phper-build" }
22+
phper-build = { version = "0.4.0-alpha.2", 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.1"
3+
version = "0.4.0-alpha.2"
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.1", path = "../phper-sys" }
15+
phper-sys = { version = "0.4.0-alpha.2", path = "../phper-sys" }
1616

1717
[build-dependencies]
18-
phper-build = { version = "0.4.0-alpha.1", path = "../phper-build" }
18+
phper-build = { version = "0.4.0-alpha.2", 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.1"
3+
version = "0.4.0-alpha.2"
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.1", path = "../phper-sys" }
15+
phper-sys = { version = "0.4.0-alpha.2", 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.1"
3+
version = "0.4.0-alpha.2"
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.1"
3+
version = "0.4.0-alpha.2"
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.1"
3+
version = "0.4.0-alpha.2"
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.97"
2020
once_cell = "1.5.2"
21-
phper-macros = { version = "0.4.0-alpha.1", path = "../phper-macros" }
21+
phper-macros = { version = "0.4.0-alpha.2", path = "../phper-macros" }
2222
tempfile = "3.1.0"
2323
tokio = { version = "1.7.0", 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.1"
3+
version = "0.4.0-alpha.2"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2021"
66
rust-version = "1.56"
@@ -20,11 +20,11 @@ dashmap = "4.0.2"
2020
derive_more = "0.99.13"
2121
indexmap = "1.6.2"
2222
once_cell = "1.7.2"
23-
phper-alloc = { version = "0.4.0-alpha.1", path = "../phper-alloc" }
24-
phper-macros = { version = "0.4.0-alpha.1", path = "../phper-macros" }
25-
phper-sys = { version = "0.4.0-alpha.1", path = "../phper-sys" }
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" }
2626
thiserror = "1.0.10"
2727

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

tests/integration/Cargo.toml

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

1515
[dependencies]
1616
indexmap = "1.6.2"
17-
phper = { version = "0.4.0-alpha.1", path = "../../phper" }
17+
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
1818

1919
[dev-dependencies]
20-
phper-test = { version = "0.4.0-alpha.1", path = "../../phper-test", features = ["fpm"] }
20+
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test", features = ["fpm"] }

0 commit comments

Comments
 (0)