Skip to content

Commit 9a4e842

Browse files
committed
Change version to 0.4.0-alpha.1.
1 parent 8604076 commit 9a4e842

File tree

12 files changed

+28
-27
lines changed

12 files changed

+28
-27
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- master
77
- 0.3.x-dev
8+
- 0.4.x-dev
89
pull_request:
910
branches: [ "**" ]
1011

examples/hello/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.3.0", path = "../../phper" }
16+
phper = { version = "0.4.0-alpha.1", path = "../../phper" }
1717

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

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

examples/http-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.3.0", path = "../../phper" }
19+
phper = { version = "0.4.0-alpha.1", 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.3.0", path = "../../phper-test" }
24+
phper-test = { version = "0.4.0-alpha.1", path = "../../phper-test" }

examples/http-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
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.3.0", path = "../../phper" }
17+
phper = { version = "0.4.0-alpha.1", path = "../../phper" }
1818
thiserror = "1.0.24"
1919
tokio = { version = "1.6.0", features = ["full"] }
2020

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

examples/logging/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.3.0", path = "../../phper" }
16+
phper = { version = "0.4.0-alpha.1", path = "../../phper" }
1717

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

2121
[build-dependencies]
22-
phper-build = { version = "0.3.0", path = "../../phper-build" }
22+
phper-build = { version = "0.4.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.3.0"
3+
version = "0.4.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
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.3.0", path = "../phper-sys" }
15+
phper-sys = { version = "0.4.0-alpha.1", path = "../phper-sys" }
1616

1717
[build-dependencies]
18-
phper-build = { version = "0.3.0", path = "../phper-build" }
18+
phper-build = { version = "0.4.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.3.0"
3+
version = "0.4.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
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.3.0", path = "../phper-sys" }
15+
phper-sys = { version = "0.4.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.3.0"
3+
version = "0.4.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
55
edition = "2021"
66
rust-version = "1.56"

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.3.1"
3+
version = "0.4.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
55
edition = "2021"
66
rust-version = "1.56"

phper-test/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-test"
3-
version = "0.3.0"
3+
version = "0.4.0-alpha.1"
44
authors = ["jmjoy <918734043@qq.com>"]
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.3.0", path = "../phper-macros" }
21+
phper-macros = { version = "0.4.0-alpha.1", path = "../phper-macros" }
2222
tempfile = "3.1.0"
2323
tokio = { version = "1.7.0", optional = true }
2424

0 commit comments

Comments
 (0)