Skip to content

Commit ee2c394

Browse files
committed
v0.0.6: bumped version and changelog
1 parent e0743b1 commit ee2c394

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

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

513
- Relicensed project under MIT or Apache 2.0 as per Rust crate guidelines (@davidcole1340) [c:439f2ae]

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
55
homepage = "https://github.com/davidcole1340/ext-php-rs"
66
license = "MIT OR Apache-2.0"
77
keywords = ["php", "ffi", "zend"]
8-
version = "0.0.5"
8+
version = "0.0.6"
99
authors = ["David Cole <david.cole1340@gmail.com>"]
1010
edition = "2018"
1111
categories = ["api-bindings"]
1212

1313
[dependencies]
1414
libc = "0.2.88"
1515
bitflags = "1.2.1"
16-
ext-php-rs-derive = { version = "=0.0.5", path = "./ext-php-rs-derive" }
16+
ext-php-rs-derive = { version = "=0.0.6", path = "./ext-php-rs-derive" }
1717

1818
[build-dependencies]
1919
bindgen = { version = ">= 0.57.0, < 0.58.1" }

ext-php-rs-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Derive macros for ext-php-rs."
44
repository = "https://github.com/davidcole1340/ext-php-rs"
55
homepage = "https://github.com/davidcole1340/ext-php-rs"
66
license = "MIT OR Apache-2.0"
7-
version = "0.0.5"
7+
version = "0.0.6"
88
authors = ["David Cole <david.cole1340@gmail.com>"]
99
edition = "2018"
1010

0 commit comments

Comments
 (0)