Skip to content

Commit 06db954

Browse files
committed
Release v0.7.2
1 parent 051e469 commit 06db954

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
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]

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.1"
8+
version = "0.7.2"
99
authors = ["David Cole <[email protected]>"]
1010
edition = "2018"
1111
categories = ["api-bindings"]
@@ -16,7 +16,7 @@ bitflags = "1.2.1"
1616
parking_lot = "0.11.2"
1717
cfg-if = "1.0"
1818
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" }
2020

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

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.1"
7+
version = "0.7.2"
88
authors = ["David Cole <[email protected]>"]
99
edition = "2018"
1010

0 commit comments

Comments
 (0)