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 1
1
# Changelog
2
2
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
+
3
18
## Version 0.7.1
4
19
5
20
- 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"
5
5
homepage = " https://github.com/davidcole1340/ext-php-rs"
6
6
license = " MIT OR Apache-2.0"
7
7
keywords = [" php" , " ffi" , " zend" ]
8
- version = " 0.7.1 "
8
+ version = " 0.7.2 "
9
9
authors = [
" David Cole <[email protected] >" ]
10
10
edition = " 2018"
11
11
categories = [" api-bindings" ]
@@ -16,7 +16,7 @@ bitflags = "1.2.1"
16
16
parking_lot = " 0.11.2"
17
17
cfg-if = " 1.0"
18
18
anyhow = { 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" }
20
20
21
21
[build-dependencies ]
22
22
bindgen = { version = " 0.59" }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description = "Derive macros for ext-php-rs."
4
4
repository = " https://github.com/davidcole1340/ext-php-rs"
5
5
homepage = " https://github.com/davidcole1340/ext-php-rs"
6
6
license = " MIT OR Apache-2.0"
7
- version = " 0.7.1 "
7
+ version = " 0.7.2 "
8
8
authors = [
" David Cole <[email protected] >" ]
9
9
edition = " 2018"
10
10
You can’t perform that action at this time.
0 commit comments