File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Version 0.7.2
4+
5+ - Add preliminary PHP 8.1 support. [ #109 ]
6+ - Extensions should now compile for PHP 8.1. This doesn't implement any of the
7+ new PHP 8.1 features.
8+ - Add ` anyhow ` cargo feature to implement
9+ ` From<anyhow::Error> for PhpException ` . [ #110 ]
10+ - Made ` ClassMetadata: Send + Sync ` . [ #111 ]
11+ - Fixed registering constants with expressions. [ #112 ]
12+
13+ [ #109 ] : https://github.com/davidcole1340/ext-php-rs/pull/109
14+ [ #110 ] : https://github.com/davidcole1340/ext-php-rs/pull/110
15+ [ #111 ] : https://github.com/davidcole1340/ext-php-rs/pull/111
16+ [ #112 ] : https://github.com/davidcole1340/ext-php-rs/pull/112
17+
318## Version 0.7.1
419
520- Ensure stable ABI between ` cargo-php ` and downstream extensions. [ #108 ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
55homepage = " https://github.com/davidcole1340/ext-php-rs"
66license = " MIT OR Apache-2.0"
77keywords = [" php" , " ffi" , " zend" ]
8- version = " 0.7.1 "
8+ version = " 0.7.2 "
99authors = [
" David Cole <[email protected] >" ]
1010edition = " 2018"
1111categories = [" api-bindings" ]
@@ -16,7 +16,7 @@ bitflags = "1.2.1"
1616parking_lot = " 0.11.2"
1717cfg-if = " 1.0"
1818anyhow = { version = " 1" , optional = true }
19- ext-php-rs-derive = { version = " =0.7.1 " , path = " ./crates/macros" }
19+ ext-php-rs-derive = { version = " =0.7.2 " , path = " ./crates/macros" }
2020
2121[build-dependencies ]
2222bindgen = { version = " 0.59" }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description = "Derive macros for ext-php-rs."
44repository = " https://github.com/davidcole1340/ext-php-rs"
55homepage = " https://github.com/davidcole1340/ext-php-rs"
66license = " MIT OR Apache-2.0"
7- version = " 0.7.1 "
7+ version = " 0.7.2 "
88authors = [
" David Cole <[email protected] >" ]
99edition = " 2018"
1010
You can’t perform that action at this time.
0 commit comments