Skip to content

Commit

Permalink
v0.0.6: bumped version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcole1340 committed May 11, 2021
1 parent e0743b1 commit ee2c394
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Version 0.0.6

- Fixed `panic!` when a PHP binary string was given to a function (@davidcole1340) [c:d73788e]
- Fixed memory leak when returning an array from Rust to PHP (@davidcole1340) #34
- Documentation is now deployed to [GitHub Pages](https://davidcol1340.github.io/ext-php-rs) (@davidcole1340) #35
- Added ability to unpack and pack binary strings similar to PHP (@davidcole1340) #32
- Allowed `default-features` to be true for Bindgen (@willbrowningme) #36

## Version 0.0.5

- Relicensed project under MIT or Apache 2.0 as per Rust crate guidelines (@davidcole1340) [c:439f2ae]
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ 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.5"
version = "0.0.6"
authors = ["David Cole <[email protected]>"]
edition = "2018"
categories = ["api-bindings"]

[dependencies]
libc = "0.2.88"
bitflags = "1.2.1"
ext-php-rs-derive = { version = "=0.0.5", path = "./ext-php-rs-derive" }
ext-php-rs-derive = { version = "=0.0.6", path = "./ext-php-rs-derive" }

[build-dependencies]
bindgen = { version = ">= 0.57.0, < 0.58.1" }
Expand Down
2 changes: 1 addition & 1 deletion ext-php-rs-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.5"
version = "0.0.6"
authors = ["David Cole <[email protected]>"]
edition = "2018"

Expand Down

0 comments on commit ee2c394

Please sign in to comment.