Skip to content

Commit 7b8e2d4

Browse files
committed
Swith version to 0.2.0-alpha.3.
1 parent 258ea35 commit 7b8e2d4

File tree

10 files changed

+24
-24
lines changed

10 files changed

+24
-24
lines changed

examples/hello/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ license = "Unlicense"
1212
crate-type = ["cdylib"]
1313

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

1717
[dev-dependencies]
18-
phper-test = { version = "0.2.0-alpha.2", path = "../../phper-test" }
18+
phper-test = { version = "0.2.0-alpha.3", path = "../../phper-test" }
1919

2020
[build-dependencies]
21-
phper-build = { version = "0.2.0-alpha.2", path = "../../phper-build" }
21+
phper-build = { version = "0.2.0-alpha.3", path = "../../phper-build" }

examples/http-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ crate-type = ["cdylib"]
1515
anyhow = "1.0.40"
1616
bytes = "1.0.1"
1717
indexmap = "1.6.2"
18-
phper = { version = "0.2.0-alpha.2", path = "../../phper" }
18+
phper = { version = "0.2.0-alpha.3", path = "../../phper" }
1919
reqwest = { version = "0.11.3", features = ["blocking"] }
2020
thiserror = "1.0.24"
2121

2222
[dev-dependencies]
23-
phper-test = { version = "0.2.0-alpha.2", path = "../../phper-test" }
23+
phper-test = { version = "0.2.0-alpha.3", path = "../../phper-test" }

examples/logging/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ license = "Unlicense"
1212
crate-type = ["cdylib"]
1313

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

1717
[dev-dependencies]
18-
phper-test = { version = "0.2.0-alpha.2", path = "../../phper-test" }
18+
phper-test = { version = "0.2.0-alpha.3", path = "../../phper-test" }
1919

2020
[build-dependencies]
21-
phper-build = { version = "0.2.0-alpha.2", path = "../../phper-build" }
21+
phper-build = { version = "0.2.0-alpha.3", path = "../../phper-build" }

phper-alloc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper-alloc"
3-
version = "0.2.0-alpha.2"
3+
version = "0.2.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2018"
66
description = "Alloc related items for phper crate."
@@ -11,7 +11,7 @@ keywords = ["php", "alloc"]
1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
14-
phper-sys = { version = "0.2.0-alpha.2", path = "../phper-sys" }
14+
phper-sys = { version = "0.2.0-alpha.3", path = "../phper-sys" }
1515

1616
[build-dependencies]
17-
phper-build = { version = "0.2.0-alpha.2", path = "../phper-build" }
17+
phper-build = { version = "0.2.0-alpha.3", path = "../phper-build" }

phper-build/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper-build"
3-
version = "0.2.0-alpha.2"
3+
version = "0.2.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2018"
66
description = "Generates stubs for project using phper."
@@ -11,4 +11,4 @@ keywords = ["php", "binding"]
1111
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1212

1313
[dependencies]
14-
phper-sys = { version = "0.2.0-alpha.2", path = "../phper-sys" }
14+
phper-sys = { version = "0.2.0-alpha.3", path = "../phper-sys" }

phper-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper-macros"
3-
version = "0.2.0-alpha.2"
3+
version = "0.2.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2018"
66
description = "The proc-macros for phper crate."

phper-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper-sys"
3-
version = "0.2.0-alpha.2"
3+
version = "0.2.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2018"
66
description = "Low level PHP binding for Rust."

phper-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper-test"
3-
version = "0.2.0-alpha.2"
3+
version = "0.2.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2018"
66
description = "PHPer testing utilities."

phper/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper"
3-
version = "0.2.0-alpha.2"
3+
version = "0.2.0-alpha.3"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2018"
66
description = "A library that allows us to write PHP extensions using pure Rust and using safe Rust whenever possible."
@@ -20,11 +20,11 @@ indexmap = "1.6.2"
2020
num-derive = "0.3"
2121
num-traits = "0.2"
2222
once_cell = "1.7.2"
23-
phper-alloc = { version = "0.2.0-alpha.2", path = "../phper-alloc" }
24-
phper-macros = { version = "0.2.0-alpha.2", path = "../phper-macros" }
25-
phper-sys = { version = "0.2.0-alpha.2", path = "../phper-sys" }
23+
phper-alloc = { version = "0.2.0-alpha.3", path = "../phper-alloc" }
24+
phper-macros = { version = "0.2.0-alpha.3", path = "../phper-macros" }
25+
phper-sys = { version = "0.2.0-alpha.3", path = "../phper-sys" }
2626
thiserror = "1.0.10"
2727

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

tests/integration/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ crate-type = ["cdylib"]
1313

1414
[dependencies]
1515
indexmap = "1.6.2"
16-
phper = { version = "0.2.0-alpha.2", path = "../../phper" }
16+
phper = { version = "0.2.0-alpha.3", path = "../../phper" }
1717

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

0 commit comments

Comments
 (0)