Skip to content

Commit e5a092d

Browse files
committed
v0.0.5: bumped version and changelog
1 parent d1e719e commit e5a092d

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
3+
## Version 0.0.5
4+
5+
- Relicensed project under MIT or Apache 2.0 as per Rust crate guidelines (@davidcole1340) [c:439f2ae]
6+
- Added `parse_args!` macro to simplify argument parsing (@davidcole1340) [c:45c7242]
7+
- Added ability to throw exceptions from Rust to PHP (@davidcole1340) [c:45c7242]
8+
- Added ability to register global constants (@davidcole1340) [c:472e26e]
9+
- Implemented `From<ZendHashTable>` for `Vec` (@davidcole1340) [c:3917c41]
10+
- Expanded implementations for converting to `Zval` from primitives (@davidcole1340) [c:d4c6aa2]
11+
- Replaced unit errors with an `Error` enum (@davidcole1340) [c:f11451f]
12+
- Added `Debug` and `Clone` implementations for most structs (@davidcole1340) [c:62a43e6]

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.4"
8+
version = "0.0.5"
99
authors = ["David Cole <[email protected]>"]
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.4", path = "./ext-php-rs-derive" }
16+
ext-php-rs-derive = { version = "=0.0.5", path = "./ext-php-rs-derive" }
1717

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

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.4"
7+
version = "0.0.5"
88
authors = ["David Cole <[email protected]>"]
99
edition = "2018"
1010

0 commit comments

Comments
 (0)