Skip to content

Commit efc6475

Browse files
authored
Merge pull request #6 from jmjoy/switch-version
Switch version to 0.2.0-alpha.1.
2 parents 8fb70cf + b172edc commit efc6475

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

examples/hello/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hello"
3-
version = "0.2.0"
3+
version = "0.0.0"
44
authors = ["jmjoy <918734043@qq.com>"]
55
edition = "2018"
66
publish = false
@@ -12,10 +12,10 @@ license = "Unlicense"
1212
crate-type = ["cdylib"]
1313

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

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

2020
[build-dependencies]
21-
phper-build = { version = "0.2", path = "../../phper-build" }
21+
phper-build = { version = "0.2.0-alpha.1", 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"
3+
version = "0.2.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
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", path = "../phper-sys" }
14+
phper-sys = { version = "0.2.0-alpha.1", path = "../phper-sys" }
1515

1616
[build-dependencies]
17-
phper-build = { version = "0.2", path = "../phper-build" }
17+
phper-build = { version = "0.2.0-alpha.1", 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"
3+
version = "0.2.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
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", path = "../phper-sys" }
14+
phper-sys = { version = "0.2.0-alpha.1", 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"
3+
version = "0.2.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
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"
3+
version = "0.2.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
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"
3+
version = "0.2.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
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"
3+
version = "0.2.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
55
edition = "2018"
66
description = "A library that allows us to write PHP extensions using pure Rust and using safe Rust whenever possible."
@@ -16,11 +16,11 @@ keywords = ["php", "binding", "extension"]
1616
anyhow = "1.0.40"
1717
clap = "3.0.0-beta.2"
1818
once_cell = "1.7.2"
19-
phper-alloc = { version = "0.2", path = "../phper-alloc" }
20-
phper-macros = { version = "0.2", path = "../phper-macros" }
21-
phper-sys = { version = "0.2", path = "../phper-sys" }
19+
phper-alloc = { version = "0.2.0-alpha.1", path = "../phper-alloc" }
20+
phper-macros = { version = "0.2.0-alpha.1", path = "../phper-macros" }
21+
phper-sys = { version = "0.2.0-alpha.1", path = "../phper-sys" }
2222
thiserror = "1.0.10"
2323

2424
[build-dependencies]
25-
phper-build = { version = "0.2", path = "../phper-build" }
26-
phper-sys = { version = "0.2", path = "../phper-sys" }
25+
phper-build = { version = "0.2.0-alpha.1", path = "../phper-build" }
26+
phper-sys = { version = "0.2.0-alpha.1", path = "../phper-sys" }

0 commit comments

Comments
 (0)