Skip to content

Commit 705be68

Browse files
committed
Release v0.7.3
1 parent 1f546b2 commit 705be68

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## Version 0.7.3
4+
5+
- Upgrade `clap` to `3.0.0-rc3`. [#113]
6+
- Build properties hashmap once and cache inside class metadata. [#114]
7+
- Add `impl FromZval for &Zval` and `impl FromZvalMut for &mut Zval`.
8+
- Add `has_numerical_keys` and `has_sequential_keys` to `ZendHashTable`. [#115]
9+
10+
Thanks to the following contributors:
11+
12+
- @davidcole1340
13+
- @vkill
14+
15+
[#113]: https://github.com/davidcole1340/ext-php-rs/pull/113
16+
[#114]: https://github.com/davidcole1340/ext-php-rs/pull/114
17+
[#115]: https://github.com/davidcole1340/ext-php-rs/pull/115
18+
319
## Version 0.7.2
420

521
- Add preliminary PHP 8.1 support. [#109]

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
55
homepage = "https://github.com/davidcole1340/ext-php-rs"
66
license = "MIT OR Apache-2.0"
77
keywords = ["php", "ffi", "zend"]
8-
version = "0.7.2"
8+
version = "0.7.3"
99
authors = ["David Cole <[email protected]>"]
1010
edition = "2018"
1111
categories = ["api-bindings"]
@@ -17,7 +17,7 @@ parking_lot = "0.11.2"
1717
cfg-if = "1.0"
1818
once_cell = "1.8.0"
1919
anyhow = { version = "1", optional = true }
20-
ext-php-rs-derive = { version = "=0.7.2", path = "./crates/macros" }
20+
ext-php-rs-derive = { version = "=0.7.3", path = "./crates/macros" }
2121

2222
[build-dependencies]
2323
bindgen = { version = "0.59" }

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
55
homepage = "https://github.com/davidcole1340/ext-php-rs"
66
license = "MIT OR Apache-2.0"
77
keywords = ["php", "ffi", "zend"]
8-
version = "0.1.2"
8+
version = "0.1.3"
99
authors = ["David Cole <[email protected]>"]
1010
edition = "2018"
1111
categories = ["api-bindings", "command-line-interface"]

crates/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Derive macros for ext-php-rs."
44
repository = "https://github.com/davidcole1340/ext-php-rs"
55
homepage = "https://github.com/davidcole1340/ext-php-rs"
66
license = "MIT OR Apache-2.0"
7-
version = "0.7.2"
7+
version = "0.7.3"
88
authors = ["David Cole <[email protected]>"]
99
edition = "2018"
1010

0 commit comments

Comments
 (0)