From a160f2a2a0253999b4f42b1f1c93edb8c9c3b20f Mon Sep 17 00:00:00 2001 From: David Cole Date: Fri, 11 Nov 2022 12:11:33 +1300 Subject: [PATCH] Bump version to v0.8.2 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.toml | 4 ++-- crates/cli/Cargo.toml | 2 +- crates/macros/Cargo.toml | 2 +- 4 files changed, 28 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28f746a4ca..047fad472e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,29 @@ # Changelog +## Version 0.8.2 + +- Update changelog for latest versions by @striezel in [#161] +- fix building docs on docs.rs by @davidcole1340 in [#165] +- Add some standard zend interfaces by @nikeee in [#164] +- Correct parameter name. by @denzyldick in [#168] +- fix describe when using `#[implements]` by @davidcole1340 in [#169] +- Add example that shows how to implement an interface by @nikeee in [#167] +- add `before` flag to `#[php_startup]` by @davidcole1340 in [#170] +- add ability to define abstract methods by @davidcole1340 in [#171] +- chore(cli): Bump Clap for CLI tool by @ptondereau in [#177] +- fix type links in docs.rs by @davidcole1340 in [#179] + +[#161]: https://github.com/davidcole1340/ext-php-rs/pull/161 +[#165]: https://github.com/davidcole1340/ext-php-rs/pull/165 +[#164]: https://github.com/davidcole1340/ext-php-rs/pull/164 +[#168]: https://github.com/davidcole1340/ext-php-rs/pull/168 +[#169]: https://github.com/davidcole1340/ext-php-rs/pull/169 +[#167]: https://github.com/davidcole1340/ext-php-rs/pull/167 +[#170]: https://github.com/davidcole1340/ext-php-rs/pull/170 +[#171]: https://github.com/davidcole1340/ext-php-rs/pull/171 +[#177]: https://github.com/davidcole1340/ext-php-rs/pull/177 +[#179]: https://github.com/davidcole1340/ext-php-rs/pull/179 + ## Version 0.8.1 - 404 /guide doesn't exists. by @denzyldick in [#149] diff --git a/Cargo.toml b/Cargo.toml index fc164e981e..520a779ecc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.8.1" +version = "0.8.2" authors = ["David Cole "] edition = "2018" categories = ["api-bindings"] @@ -17,7 +17,7 @@ parking_lot = "0.12.1" cfg-if = "1.0" once_cell = "1.8.0" anyhow = { version = "1", optional = true } -ext-php-rs-derive = { version = "=0.8.1", path = "./crates/macros" } +ext-php-rs-derive = { version = "=0.8.2", path = "./crates/macros" } [dev-dependencies] skeptic = "0.13" diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 611dfb59de..e2f15b0912 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -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.1.6" +version = "0.1.7" authors = ["David Cole "] edition = "2018" categories = ["api-bindings", "command-line-interface"] diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index 9ab5118b3f..8137816f71 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -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.8.1" +version = "0.8.2" authors = ["David Cole "] edition = "2018"