File tree Expand file tree Collapse file tree 4 files changed +28
-4
lines changed Expand file tree Collapse file tree 4 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
27
## Version 0.8.1
4
28
5
29
- 404 /guide doesn't exists. by @denzyldick in [ #149 ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
5
5
homepage = " https://github.com/davidcole1340/ext-php-rs"
6
6
license = " MIT OR Apache-2.0"
7
7
keywords = [" php" , " ffi" , " zend" ]
8
- version = " 0.8.1 "
8
+ version = " 0.8.2 "
9
9
authors = [
" David Cole <[email protected] >" ]
10
10
edition = " 2018"
11
11
categories = [" api-bindings" ]
@@ -17,7 +17,7 @@ parking_lot = "0.12.1"
17
17
cfg-if = " 1.0"
18
18
once_cell = " 1.8.0"
19
19
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" }
21
21
22
22
[dev-dependencies ]
23
23
skeptic = " 0.13"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ repository = "https://github.com/davidcole1340/ext-php-rs"
5
5
homepage = " https://github.com/davidcole1340/ext-php-rs"
6
6
license = " MIT OR Apache-2.0"
7
7
keywords = [" php" , " ffi" , " zend" ]
8
- version = " 0.1.6 "
8
+ version = " 0.1.7 "
9
9
authors = [
" David Cole <[email protected] >" ]
10
10
edition = " 2018"
11
11
categories = [" api-bindings" , " command-line-interface" ]
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description = "Derive macros for ext-php-rs."
4
4
repository = " https://github.com/davidcole1340/ext-php-rs"
5
5
homepage = " https://github.com/davidcole1340/ext-php-rs"
6
6
license = " MIT OR Apache-2.0"
7
- version = " 0.8.1 "
7
+ version = " 0.8.2 "
8
8
authors = [
" David Cole <[email protected] >" ]
9
9
edition = " 2018"
10
10
You can’t perform that action at this time.
0 commit comments