Skip to content

Commit f14ca9f

Browse files
committed
Switch version to 0.2.0.
1 parent 8ced243 commit f14ca9f

File tree

11 files changed

+25
-27
lines changed

11 files changed

+25
-27
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.3", path = "../../phper" }
15+
phper = { version = "0.2.0", path = "../../phper" }
1616

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

2020
[build-dependencies]
21-
phper-build = { version = "0.2.0-alpha.3", path = "../../phper-build" }
21+
phper-build = { version = "0.2.0", 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.3", path = "../../phper" }
18+
phper = { version = "0.2.0", path = "../../phper" }
1919
reqwest = { version = "0.11.3", features = ["blocking", "cookies"] }
2020
thiserror = "1.0.24"
2121

2222
[dev-dependencies]
23-
phper-test = { version = "0.2.0-alpha.3", path = "../../phper-test" }
23+
phper-test = { version = "0.2.0", 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.3", path = "../../phper" }
15+
phper = { version = "0.2.0", path = "../../phper" }
1616

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

2020
[build-dependencies]
21-
phper-build = { version = "0.2.0-alpha.3", path = "../../phper-build" }
21+
phper-build = { version = "0.2.0", 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.3"
3+
version = "0.2.0"
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.3", path = "../phper-sys" }
14+
phper-sys = { version = "0.2.0", path = "../phper-sys" }
1515

1616
[build-dependencies]
17-
phper-build = { version = "0.2.0-alpha.3", path = "../phper-build" }
17+
phper-build = { version = "0.2.0", 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.3"
3+
version = "0.2.0"
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.3", path = "../phper-sys" }
14+
phper-sys = { version = "0.2.0", 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.3"
3+
version = "0.2.0"
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.3"
3+
version = "0.2.0"
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.3"
3+
version = "0.2.0"
44
authors = ["jmjoy <[email protected]>"]
55
edition = "2018"
66
description = "PHPer testing utilities."

phper/Cargo.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "phper"
3-
version = "0.2.0-alpha.3"
3+
version = "0.2.0"
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."
@@ -18,14 +18,12 @@ clap = "3.0.0-beta.2"
1818
dashmap = "4.0.2"
1919
derive_more = "0.99.13"
2020
indexmap = "1.6.2"
21-
#num-derive = "0.3"
22-
#num-traits = "0.2"
2321
once_cell = "1.7.2"
24-
phper-alloc = { version = "0.2.0-alpha.3", path = "../phper-alloc" }
25-
phper-macros = { version = "0.2.0-alpha.3", path = "../phper-macros" }
26-
phper-sys = { version = "0.2.0-alpha.3", path = "../phper-sys" }
22+
phper-alloc = { version = "0.2.0", path = "../phper-alloc" }
23+
phper-macros = { version = "0.2.0", path = "../phper-macros" }
24+
phper-sys = { version = "0.2.0", path = "../phper-sys" }
2725
thiserror = "1.0.10"
2826

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

phper/src/functions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ impl ZendFunction {
231231
}
232232
}
233233

234-
pub(crate) fn call_method<T: 'static>(
234+
pub fn call_method<T: 'static>(
235235
&mut self,
236236
object: &mut Object<T>,
237237
arguments: &mut [Val],

0 commit comments

Comments
 (0)