Skip to content

Commit 0dae466

Browse files
committed
Bump
1 parent ea078bb commit 0dae466

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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.10.3"
8+
version = "0.10.4"
99
authors = ["David Cole <david.cole1340@gmail.com>"]
1010
edition = "2018"
1111
categories = ["api-bindings"]

guide/src/macros/impl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@ In this example, we're exposing an async Rust HTTP client library called [reqwes
184184

185185
This allows full compatibility with [amphp](https://amphp.org), [PSL](https://github.com/azjezz/psl), [reactphp](https://reactphp.org) and any other async PHP library based on [Revolt](https://revolt.run).
186186

187-
Currently, only POSIX platforms are supported by php-tokio (Linux & Mac OS).
187+
Currently, only Linux is supported by php-tokio.
188188

189189
```rust,no_run
190-
# #![cfg(unix)]
190+
# #![cfg(linux)]
191191
# extern crate ext_php_rs;
192192
# use ext_php_rs::prelude::*;
193193
use php_tokio::EventLoop;

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ pub use ext_php_rs_derive::php_impl;
402402
/// # Example
403403
///
404404
/// ```no_run
405-
/// # #![cfg(unix))]
405+
/// # #![cfg(linux))]
406406
/// # use ext_php_rs::prelude::*;
407407
/// use php_tokio::EventLoop;
408408
///

0 commit comments

Comments
 (0)