Skip to content

Commit a160f2a

Browse files
committed
Bump version to v0.8.2
1 parent eafd3b4 commit a160f2a

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

CHANGELOG.md

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

3+
## Version 0.8.2
4+
5+
- Update changelog for latest versions by @striezel in [#161]
6+
- fix building docs on docs.rs by @davidcole1340 in [#165]
7+
- Add some standard zend interfaces by @nikeee in [#164]
8+
- Correct parameter name. by @denzyldick in [#168]
9+
- fix describe when using `#[implements]` by @davidcole1340 in [#169]
10+
- Add example that shows how to implement an interface by @nikeee in [#167]
11+
- add `before` flag to `#[php_startup]` by @davidcole1340 in [#170]
12+
- add ability to define abstract methods by @davidcole1340 in [#171]
13+
- chore(cli): Bump Clap for CLI tool by @ptondereau in [#177]
14+
- fix type links in docs.rs by @davidcole1340 in [#179]
15+
16+
[#161]: https://github.com/davidcole1340/ext-php-rs/pull/161
17+
[#165]: https://github.com/davidcole1340/ext-php-rs/pull/165
18+
[#164]: https://github.com/davidcole1340/ext-php-rs/pull/164
19+
[#168]: https://github.com/davidcole1340/ext-php-rs/pull/168
20+
[#169]: https://github.com/davidcole1340/ext-php-rs/pull/169
21+
[#167]: https://github.com/davidcole1340/ext-php-rs/pull/167
22+
[#170]: https://github.com/davidcole1340/ext-php-rs/pull/170
23+
[#171]: https://github.com/davidcole1340/ext-php-rs/pull/171
24+
[#177]: https://github.com/davidcole1340/ext-php-rs/pull/177
25+
[#179]: https://github.com/davidcole1340/ext-php-rs/pull/179
26+
327
## Version 0.8.1
428

529
- 404 /guide doesn't exists. by @denzyldick in [#149]

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.8.1"
8+
version = "0.8.2"
99
authors = ["David Cole <[email protected]>"]
1010
edition = "2018"
1111
categories = ["api-bindings"]
@@ -17,7 +17,7 @@ parking_lot = "0.12.1"
1717
cfg-if = "1.0"
1818
once_cell = "1.8.0"
1919
anyhow = { version = "1", optional = true }
20-
ext-php-rs-derive = { version = "=0.8.1", path = "./crates/macros" }
20+
ext-php-rs-derive = { version = "=0.8.2", path = "./crates/macros" }
2121

2222
[dev-dependencies]
2323
skeptic = "0.13"

crates/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.1.6"
8+
version = "0.1.7"
99
authors = ["David Cole <[email protected]>"]
1010
edition = "2018"
1111
categories = ["api-bindings", "command-line-interface"]

crates/macros/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.8.1"
7+
version = "0.8.2"
88
authors = ["David Cole <[email protected]>"]
99
edition = "2018"
1010

0 commit comments

Comments
 (0)