From c98bf495ea3157d44122770ccab18db0978b3159 Mon Sep 17 00:00:00 2001 From: David Date: Fri, 21 May 2021 17:16:36 +1200 Subject: [PATCH] v0.0.7: bumped version (#43) --- CHANGELOG.md | 6 ++++++ Cargo.toml | 4 ++-- ext-php-rs-derive/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48ec3fb6fd..b4ac2bd586 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Version 0.0.7 + +- Added support for thread-safe PHP (@davidcole1340) #37 +- Added ability to add properties to classes (@davidcole1340) #39 +- Added better interactions with objects (@davidcole1340) #41 + ## Version 0.0.6 - Fixed `panic!` when a PHP binary string was given to a function (@davidcole1340) [c:d73788e] diff --git a/Cargo.toml b/Cargo.toml index 4c58d16b50..4b80b5fa33 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.0.6" +version = "0.0.7" authors = ["David Cole "] edition = "2018" categories = ["api-bindings"] @@ -13,7 +13,7 @@ categories = ["api-bindings"] [dependencies] libc = "0.2.88" bitflags = "1.2.1" -ext-php-rs-derive = { version = "=0.0.6", path = "./ext-php-rs-derive" } +ext-php-rs-derive = { version = "=0.0.7", path = "./ext-php-rs-derive" } [build-dependencies] bindgen = { version = ">= 0.57.0, < 0.58.1" } diff --git a/ext-php-rs-derive/Cargo.toml b/ext-php-rs-derive/Cargo.toml index 401d8096e5..fff94930b4 100644 --- a/ext-php-rs-derive/Cargo.toml +++ b/ext-php-rs-derive/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.0.6" +version = "0.0.7" authors = ["David Cole "] edition = "2018"