File tree Expand file tree Collapse file tree 6 files changed +54
-5
lines changed Expand file tree Collapse file tree 6 files changed +54
-5
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.15.0] ( https://github.com/davidcole1340/ext-php-rs/compare/ext-php-rs-v0.14.2...ext-php-rs-v0.15.0 ) - 2025-09-08
4+
5+ ### BREAKING CHANGES
6+
7+ - * (stubs)* [ ** breaking** ] Add stubs for ` RustClosure ` (by @Xenira ) [[ #373 ] ( https://github.com/davidcole1340/ext-php-rs/issues/373 )]
8+ > New field ` variadic ` added to ` Parameter ` struct.
9+
10+ ### Added
11+ - * (array)* Introducing BTreeMap conversion and refactoring HashMap conversion (by @kakserpom ) [[ #535 ] ( https://github.com/davidcole1340/ext-php-rs/issues/535 )]
12+ - * (array)* Support ` Vec<(K,V)> ` for hashtables (by @Xenira ) [[ #425 ] ( https://github.com/davidcole1340/ext-php-rs/issues/425 )]
13+ - * (enum)* Add basic enum support (by @Xenira ) [[ #178 ] ( https://github.com/davidcole1340/ext-php-rs/issues/178 )] [[ #302 ] ( https://github.com/davidcole1340/ext-php-rs/issues/302 )]
14+ - * (module)* Add ` ModuleBuilder ` name and version setters (by @kakserpom ) [[ #534 ] ( https://github.com/davidcole1340/ext-php-rs/issues/534 )]
15+ - * (zval)* Add ` Zval::null() ` (by @kakserpom ) [[ #521 ] ( https://github.com/davidcole1340/ext-php-rs/issues/521 )]
16+ - Add constructor visibility (by @Norbytus ) [[ #542 ] ( https://github.com/davidcole1340/ext-php-rs/issues/542 )]
17+
18+ ### Other
19+ - * (array)* Split ` array.rs ` types into smaller files (by @ptondereau ) [[ #524 ] ( https://github.com/davidcole1340/ext-php-rs/issues/524 )]
20+ - * (clippy)* Fix new clippy findings (by @Xenira ) [[ #543 ] ( https://github.com/davidcole1340/ext-php-rs/issues/543 )]
21+ - * (deps)* Update dialoguer requirement from 0.11 to 0.12 (by @dependabot [ bot] )
22+ - * (deps)* Update cargo_metadata requirement from 0.21 to 0.22 (by @dependabot [ bot] )
23+ - * (deps)* Bump actions/checkout from 4 to 5 (by @dependabot [ bot] )
24+ - * (macro)* Add test infrastructure for macro crate (by @Xenira ) [[ #530 ] ( https://github.com/davidcole1340/ext-php-rs/issues/530 )]
25+ - * (readme)* Update example in readme (by @joehoyle ) [[ #539 ] ( https://github.com/davidcole1340/ext-php-rs/issues/539 )]
26+ - Update guide url and authors (by @Xenira ) [[ #500 ] ( https://github.com/davidcole1340/ext-php-rs/issues/500 )]
27+
328## [ 0.14.2] ( https://github.com/davidcole1340/ext-php-rs/compare/ext-php-rs-v0.14.1...ext-php-rs-v0.14.2 ) - 2025-07-13
429
530### Added
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
55homepage = " https://ext-php.rs"
66license = " MIT OR Apache-2.0"
77keywords = [" php" , " ffi" , " zend" ]
8- version = " 0.14.2 "
8+ version = " 0.15.0 "
99authors = [
1010 " Xenira <xenira@php.rs>" ,
1111 " David Cole <david.cole1340@gmail.com>"
@@ -21,7 +21,7 @@ parking_lot = { version = "0.12", features = ["arc_lock"] }
2121cfg-if = " 1.0"
2222once_cell = " 1.17"
2323anyhow = { version = " 1" , optional = true }
24- ext-php-rs-derive = { version = " =0.11.2 " , path = " ./crates/macros" }
24+ ext-php-rs-derive = { version = " =0.11.3 " , path = " ./crates/macros" }
2525
2626[dev-dependencies ]
2727skeptic = " 0.13"
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.1.12] ( https://github.com/davidcole1340/ext-php-rs/compare/cargo-php-v0.1.11...cargo-php-v0.1.12 ) - 2025-09-08
4+
5+ ### Added
6+ - * (enum)* Add basic enum support (by @Xenira ) [[ #178 ] ( https://github.com/davidcole1340/ext-php-rs/issues/178 )] [[ #302 ] ( https://github.com/davidcole1340/ext-php-rs/issues/302 )]
7+
8+ ### Other
9+ - * (deps)* Update dialoguer requirement from 0.11 to 0.12 (by @dependabot [ bot] )
10+ - * (deps)* Update cargo_metadata requirement from 0.21 to 0.22 (by @dependabot [ bot] )
11+ - * (deps)* Update cargo_metadata requirement from 0.20 to 0.21 (by @dependabot [ bot] )
12+ - Update guide url and authors (by @Xenira ) [[ #500 ] ( https://github.com/davidcole1340/ext-php-rs/issues/500 )]
13+
314## [ 0.1.11] ( https://github.com/davidcole1340/ext-php-rs/compare/cargo-php-v0.1.10...cargo-php-v0.1.11 ) - 2025-07-04
415
516### Added
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
55homepage = " https://ext-php.rs"
66license = " MIT OR Apache-2.0"
77keywords = [" php" , " ffi" , " zend" ]
8- version = " 0.1.11 "
8+ version = " 0.1.12 "
99authors = [
1010 " Xenira <xenira@php.rs>" ,
1111 " David Cole <david.cole1340@gmail.com>"
@@ -14,7 +14,7 @@ edition = "2018"
1414categories = [" api-bindings" , " command-line-interface" ]
1515
1616[dependencies ]
17- ext-php-rs = { version = " 0.14 " , default-features = false , path = " ../../" }
17+ ext-php-rs = { version = " 0.15 " , default-features = false , path = " ../../" }
1818
1919clap = { version = " 4.0" , features = [" derive" ] }
2020anyhow = " 1"
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.11.3] ( https://github.com/davidcole1340/ext-php-rs/compare/ext-php-rs-derive-v0.11.2...ext-php-rs-derive-v0.11.3 ) - 2025-09-08
4+
5+ ### Added
6+ - * (enum)* Add basic enum support (by @Xenira ) [[ #178 ] ( https://github.com/davidcole1340/ext-php-rs/issues/178 )] [[ #302 ] ( https://github.com/davidcole1340/ext-php-rs/issues/302 )]
7+ - Add constructor visibility (by @Norbytus ) [[ #542 ] ( https://github.com/davidcole1340/ext-php-rs/issues/542 )]
8+
9+ ### Other
10+ - * (clippy)* Fix new clippy findings (by @Xenira ) [[ #543 ] ( https://github.com/davidcole1340/ext-php-rs/issues/543 )]
11+ - * (deps)* Update darling requirement from 0.20 to 0.21 (by @dependabot [ bot] )
12+ - * (macro)* Add test infrastructure for macro crate (by @Xenira ) [[ #530 ] ( https://github.com/davidcole1340/ext-php-rs/issues/530 )]
13+ - * (readme)* Update example in readme (by @joehoyle ) [[ #539 ] ( https://github.com/davidcole1340/ext-php-rs/issues/539 )]
14+ - Update guide url and authors (by @Xenira ) [[ #500 ] ( https://github.com/davidcole1340/ext-php-rs/issues/500 )]
15+
316## [ 0.11.2] ( https://github.com/davidcole1340/ext-php-rs/compare/ext-php-rs-derive-v0.11.1...ext-php-rs-derive-v0.11.2 ) - 2025-07-13
417
518### Fixed
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://ext-php.rs"
66license = " MIT OR Apache-2.0"
7- version = " 0.11.2 "
7+ version = " 0.11.3 "
88authors = [
99 " Xenira <xenira@php.rs>" ,
1010 " David Cole <david.cole1340@gmail.com>"
You can’t perform that action at this time.
0 commit comments