mirror of
https://github.com/danog/ext-php-rs.git
synced 2024-11-30 04:39:04 +01:00
Release v0.7.2
This commit is contained in:
parent
051e469a44
commit
06db954912
15
CHANGELOG.md
15
CHANGELOG.md
@ -1,5 +1,20 @@
|
||||
# Changelog
|
||||
|
||||
## Version 0.7.2
|
||||
|
||||
- Add preliminary PHP 8.1 support. [#109]
|
||||
- Extensions should now compile for PHP 8.1. This doesn't implement any of the
|
||||
new PHP 8.1 features.
|
||||
- Add `anyhow` cargo feature to implement
|
||||
`From<anyhow::Error> for PhpException`. [#110]
|
||||
- Made `ClassMetadata: Send + Sync`. [#111]
|
||||
- Fixed registering constants with expressions. [#112]
|
||||
|
||||
[#109]: https://github.com/davidcole1340/ext-php-rs/pull/109
|
||||
[#110]: https://github.com/davidcole1340/ext-php-rs/pull/110
|
||||
[#111]: https://github.com/davidcole1340/ext-php-rs/pull/111
|
||||
[#112]: https://github.com/davidcole1340/ext-php-rs/pull/112
|
||||
|
||||
## Version 0.7.1
|
||||
|
||||
- Ensure stable ABI between `cargo-php` and downstream extensions. [#108]
|
||||
|
@ -5,7 +5,7 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
|
||||
homepage = "https://github.com/davidcole1340/ext-php-rs"
|
||||
license = "MIT OR Apache-2.0"
|
||||
keywords = ["php", "ffi", "zend"]
|
||||
version = "0.7.1"
|
||||
version = "0.7.2"
|
||||
authors = ["David Cole <david.cole1340@gmail.com>"]
|
||||
edition = "2018"
|
||||
categories = ["api-bindings"]
|
||||
@ -16,7 +16,7 @@ bitflags = "1.2.1"
|
||||
parking_lot = "0.11.2"
|
||||
cfg-if = "1.0"
|
||||
anyhow = { version = "1", optional = true }
|
||||
ext-php-rs-derive = { version = "=0.7.1", path = "./crates/macros" }
|
||||
ext-php-rs-derive = { version = "=0.7.2", path = "./crates/macros" }
|
||||
|
||||
[build-dependencies]
|
||||
bindgen = { version = "0.59" }
|
||||
|
@ -4,7 +4,7 @@ description = "Derive macros for ext-php-rs."
|
||||
repository = "https://github.com/davidcole1340/ext-php-rs"
|
||||
homepage = "https://github.com/davidcole1340/ext-php-rs"
|
||||
license = "MIT OR Apache-2.0"
|
||||
version = "0.7.1"
|
||||
version = "0.7.2"
|
||||
authors = ["David Cole <david.cole1340@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user