diff --git a/Cargo.lock b/Cargo.lock index cb5e489..fa8f8df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1240,7 +1240,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" [[package]] name = "phper" -version = "0.16.1" +version = "0.17.0" dependencies = [ "cfg-if", "derive_more", @@ -1255,7 +1255,7 @@ dependencies = [ [[package]] name = "phper-alloc" -version = "0.15.2" +version = "0.16.0" dependencies = [ "phper-build", "phper-sys", @@ -1263,14 +1263,14 @@ dependencies = [ [[package]] name = "phper-build" -version = "0.15.2" +version = "0.15.3" dependencies = [ "phper-sys", ] [[package]] name = "phper-doc" -version = "0.15.2" +version = "0.15.3" dependencies = [ "phper", "phper-build", @@ -1328,7 +1328,7 @@ dependencies = [ [[package]] name = "phper-macros" -version = "0.15.1" +version = "0.15.2" dependencies = [ "proc-macro2", "quote", @@ -1337,7 +1337,7 @@ dependencies = [ [[package]] name = "phper-sys" -version = "0.15.2" +version = "0.15.3" dependencies = [ "bindgen", "cc", @@ -1346,7 +1346,7 @@ dependencies = [ [[package]] name = "phper-test" -version = "0.15.1" +version = "0.16.0" dependencies = [ "cargo_metadata", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index da9b5e3..f1178dd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,9 +32,9 @@ repository = "https://github.com/phper-framework/phper" rust-version = "1.85" [workspace.dependencies] -phper = { version = "0.16.1", path = "./phper" } -phper-alloc = { version = "0.15.2", path = "./phper-alloc" } -phper-build = { version = "0.15.2", path = "./phper-build" } -phper-macros = { version = "0.15.1", path = "./phper-macros" } -phper-sys = { version = "0.15.2", path = "./phper-sys" } -phper-test = { version = "0.15.1", path = "./phper-test" } +phper = { version = "0.17.0", path = "./phper" } +phper-alloc = { version = "0.16.0", path = "./phper-alloc" } +phper-build = { version = "0.15.3", path = "./phper-build" } +phper-macros = { version = "0.15.2", path = "./phper-macros" } +phper-sys = { version = "0.15.3", path = "./phper-sys" } +phper-test = { version = "0.16.0", path = "./phper-test" } diff --git a/phper-alloc/CHANGELOG.md b/phper-alloc/CHANGELOG.md index 109b198..bef53da 100644 --- a/phper-alloc/CHANGELOG.md +++ b/phper-alloc/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.0](https://github.com/phper-framework/phper/compare/phper-alloc-v0.15.2...phper-alloc-v0.16.0) - 2025-07-03 + +### Added + +- Add HTML logo URL to documentation for improved branding ([#210](https://github.com/phper-framework/phper/pull/210)) + +### Other + +- Migration of ZString, ZArray, ZObject to EBox ([#208](https://github.com/phper-framework/phper/pull/208)) + ## [0.15.2](https://github.com/phper-framework/phper/compare/phper-alloc-v0.15.1...phper-alloc-v0.15.2) - 2025-05-01 ### Other diff --git a/phper-alloc/Cargo.toml b/phper-alloc/Cargo.toml index 76dc862..19654d6 100644 --- a/phper-alloc/Cargo.toml +++ b/phper-alloc/Cargo.toml @@ -12,7 +12,7 @@ name = "phper-alloc" description = "Alloc related items for phper crate." keywords = ["php", "alloc"] -version = "0.15.2" +version = "0.16.0" authors = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } diff --git a/phper-build/CHANGELOG.md b/phper-build/CHANGELOG.md index 39f7007..3245cf8 100644 --- a/phper-build/CHANGELOG.md +++ b/phper-build/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.15.3](https://github.com/phper-framework/phper/compare/phper-build-v0.15.2...phper-build-v0.15.3) - 2025-07-03 + +### Added + +- Add HTML logo URL to documentation for improved branding ([#210](https://github.com/phper-framework/phper/pull/210)) + ## [0.15.2](https://github.com/phper-framework/phper/compare/phper-build-v0.15.1...phper-build-v0.15.2) - 2025-05-01 ### Added diff --git a/phper-build/Cargo.toml b/phper-build/Cargo.toml index fcaf013..aa9eb05 100644 --- a/phper-build/Cargo.toml +++ b/phper-build/Cargo.toml @@ -12,7 +12,7 @@ name = "phper-build" description = "Generates stubs for project using phper." keywords = ["php", "binding"] -version = "0.15.2" +version = "0.15.3" authors = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } diff --git a/phper-doc/CHANGELOG.md b/phper-doc/CHANGELOG.md index 802139c..3b89ad3 100644 --- a/phper-doc/CHANGELOG.md +++ b/phper-doc/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.15.3](https://github.com/phper-framework/phper/compare/phper-doc-v0.15.2...phper-doc-v0.15.3) - 2025-07-03 + +### Added + +- Add HTML logo URL to documentation for improved branding ([#210](https://github.com/phper-framework/phper/pull/210)) + +### Other + +- Migration of ZString, ZArray, ZObject to EBox ([#208](https://github.com/phper-framework/phper/pull/208)) + ## [0.15.2](https://github.com/phper-framework/phper/compare/phper-doc-v0.15.1...phper-doc-v0.15.2) - 2025-05-01 ### Added diff --git a/phper-doc/Cargo.toml b/phper-doc/Cargo.toml index cba16fd..ab01198 100644 --- a/phper-doc/Cargo.toml +++ b/phper-doc/Cargo.toml @@ -12,7 +12,7 @@ name = "phper-doc" description = "The documentation of phper." keywords = ["php", "documentation"] -version = "0.15.2" +version = "0.15.3" authors = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } diff --git a/phper-macros/CHANGELOG.md b/phper-macros/CHANGELOG.md index 9ad36cc..c953ffc 100644 --- a/phper-macros/CHANGELOG.md +++ b/phper-macros/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.15.2](https://github.com/phper-framework/phper/compare/phper-macros-v0.15.1...phper-macros-v0.15.2) - 2025-07-03 + +### Added + +- Add HTML logo URL to documentation for improved branding ([#210](https://github.com/phper-framework/phper/pull/210)) + ## [0.15.1](https://github.com/phper-framework/phper/compare/phper-macros-v0.15.0...phper-macros-v0.15.1) - 2025-04-04 ### Other diff --git a/phper-macros/Cargo.toml b/phper-macros/Cargo.toml index f472d60..aba142b 100644 --- a/phper-macros/Cargo.toml +++ b/phper-macros/Cargo.toml @@ -12,7 +12,7 @@ name = "phper-macros" description = "The proc-macros for phper crate." keywords = ["php", "proc-macro"] -version = "0.15.1" +version = "0.15.2" authors = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } diff --git a/phper-sys/CHANGELOG.md b/phper-sys/CHANGELOG.md index bdfb799..8469d92 100644 --- a/phper-sys/CHANGELOG.md +++ b/phper-sys/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.15.3](https://github.com/phper-framework/phper/compare/phper-sys-v0.15.2...phper-sys-v0.15.3) - 2025-07-03 + +### Added + +- Add HTML logo URL to documentation for improved branding ([#210](https://github.com/phper-framework/phper/pull/210)) + ## [0.15.2](https://github.com/phper-framework/phper/compare/phper-sys-v0.15.1...phper-sys-v0.15.2) - 2025-05-01 ### Added diff --git a/phper-sys/Cargo.toml b/phper-sys/Cargo.toml index e32c437..8fbddba 100644 --- a/phper-sys/Cargo.toml +++ b/phper-sys/Cargo.toml @@ -12,7 +12,7 @@ name = "phper-sys" description = "Low level PHP binding for Rust." keywords = ["php", "binding"] -version = "0.15.2" +version = "0.15.3" authors = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } diff --git a/phper-test/CHANGELOG.md b/phper-test/CHANGELOG.md index bc50ba9..ddd3435 100644 --- a/phper-test/CHANGELOG.md +++ b/phper-test/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.0](https://github.com/phper-framework/phper/compare/phper-test-v0.15.1...phper-test-v0.16.0) - 2025-07-03 + +### Added + +- Enhance logging and testing utilities ([#215](https://github.com/phper-framework/phper/pull/215)) +- Improve integration tests ([#214](https://github.com/phper-framework/phper/pull/214)) +- Add HTML logo URL to documentation for improved branding ([#210](https://github.com/phper-framework/phper/pull/210)) + +### Other + +- Migration of ZString, ZArray, ZObject to EBox ([#208](https://github.com/phper-framework/phper/pull/208)) + ## [0.15.1](https://github.com/phper-framework/phper/compare/phper-test-v0.15.0...phper-test-v0.15.1) - 2025-04-04 ### Other diff --git a/phper-test/Cargo.toml b/phper-test/Cargo.toml index a30bddb..beaa039 100644 --- a/phper-test/Cargo.toml +++ b/phper-test/Cargo.toml @@ -12,7 +12,7 @@ name = "phper-test" description = "PHPer testing utilities." keywords = ["php", "binding"] -version = "0.15.1" +version = "0.16.0" authors = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } diff --git a/phper/CHANGELOG.md b/phper/CHANGELOG.md index c3a99b2..75a4cf2 100644 --- a/phper/CHANGELOG.md +++ b/phper/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.17.0](https://github.com/phper-framework/phper/compare/phper-v0.16.1...phper-v0.17.0) - 2025-07-03 + +### Added + +- Add raw pointer casting methods for EBox ([#213](https://github.com/phper-framework/phper/pull/213)) +- Add HTML logo URL to documentation for improved branding ([#210](https://github.com/phper-framework/phper/pull/210)) + +### Fixed + +- Fix ZArr drop ([#212](https://github.com/phper-framework/phper/pull/212)) +- Update README structure for better alignment and presentation ([#209](https://github.com/phper-framework/phper/pull/209)) + +### Other + +- Migration of ZString, ZArray, ZObject to EBox ([#208](https://github.com/phper-framework/phper/pull/208)) + ## [0.16.1](https://github.com/phper-framework/phper/compare/phper-v0.16.0...phper-v0.16.1) - 2025-05-01 ### Added diff --git a/phper/Cargo.toml b/phper/Cargo.toml index a2f4229..1aff5e6 100644 --- a/phper/Cargo.toml +++ b/phper/Cargo.toml @@ -14,7 +14,7 @@ description = "The framework that allows us to write PHP extensions using pure a documentation = "https://docs.rs/phper" readme = "README.md" keywords = ["php", "binding", "extension", "module"] -version = "0.16.1" +version = "0.17.0" authors = { workspace = true } edition = { workspace = true } rust-version = { workspace = true }