Skip to content

Switch version to 0.2.0-alpha.1. #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions examples/hello/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hello"
version = "0.2.0"
version = "0.0.0"
authors = ["jmjoy <918734043@qq.com>"]
edition = "2018"
publish = false
Expand All @@ -12,10 +12,10 @@ license = "Unlicense"
crate-type = ["cdylib"]

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

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

[build-dependencies]
phper-build = { version = "0.2", path = "../../phper-build" }
phper-build = { version = "0.2.0-alpha.1", path = "../../phper-build" }
6 changes: 3 additions & 3 deletions phper-alloc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phper-alloc"
version = "0.2.0"
version = "0.2.0-alpha.1"
authors = ["jmjoy <918734043@qq.com>"]
edition = "2018"
description = "Alloc related items for phper crate."
Expand All @@ -11,7 +11,7 @@ keywords = ["php", "alloc"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
phper-sys = { version = "0.2", path = "../phper-sys" }
phper-sys = { version = "0.2.0-alpha.1", path = "../phper-sys" }

[build-dependencies]
phper-build = { version = "0.2", path = "../phper-build" }
phper-build = { version = "0.2.0-alpha.1", path = "../phper-build" }
4 changes: 2 additions & 2 deletions phper-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phper-build"
version = "0.2.0"
version = "0.2.0-alpha.1"
authors = ["jmjoy <918734043@qq.com>"]
edition = "2018"
description = "Generates stubs for project using phper."
Expand All @@ -11,4 +11,4 @@ keywords = ["php", "binding"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
phper-sys = { version = "0.2", path = "../phper-sys" }
phper-sys = { version = "0.2.0-alpha.1", path = "../phper-sys" }
2 changes: 1 addition & 1 deletion phper-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phper-macros"
version = "0.2.0"
version = "0.2.0-alpha.1"
authors = ["jmjoy <918734043@qq.com>"]
edition = "2018"
description = "The proc-macros for phper crate."
Expand Down
2 changes: 1 addition & 1 deletion phper-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phper-sys"
version = "0.2.0"
version = "0.2.0-alpha.1"
authors = ["jmjoy <918734043@qq.com>"]
edition = "2018"
description = "Low level PHP binding for Rust."
Expand Down
2 changes: 1 addition & 1 deletion phper-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phper-test"
version = "0.2.0"
version = "0.2.0-alpha.1"
authors = ["jmjoy <918734043@qq.com>"]
edition = "2018"
description = "PHPer testing utilities."
Expand Down
12 changes: 6 additions & 6 deletions phper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phper"
version = "0.2.0"
version = "0.2.0-alpha.1"
authors = ["jmjoy <918734043@qq.com>"]
edition = "2018"
description = "A library that allows us to write PHP extensions using pure Rust and using safe Rust whenever possible."
Expand All @@ -16,11 +16,11 @@ keywords = ["php", "binding", "extension"]
anyhow = "1.0.40"
clap = "3.0.0-beta.2"
once_cell = "1.7.2"
phper-alloc = { version = "0.2", path = "../phper-alloc" }
phper-macros = { version = "0.2", path = "../phper-macros" }
phper-sys = { version = "0.2", path = "../phper-sys" }
phper-alloc = { version = "0.2.0-alpha.1", path = "../phper-alloc" }
phper-macros = { version = "0.2.0-alpha.1", path = "../phper-macros" }
phper-sys = { version = "0.2.0-alpha.1", path = "../phper-sys" }
thiserror = "1.0.10"

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