Skip to content

Commit 2821340

Browse files
author
Andrew J Westlake
committed
Updated some versions in docs and toml to 0.15
1 parent f635d50 commit 2821340

File tree

6 files changed

+10
-13
lines changed

6 files changed

+10
-13
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pyo3-asyncio"
33
description = "PyO3 utilities for Python's Asyncio library"
4-
version = "0.14.0"
4+
version = "0.15.0"
55
authors = ["Andrew J Westlake <[email protected]>"]
66
readme = "README.md"
77
keywords = ["pyo3", "python", "ffi", "async", "asyncio"]
@@ -108,7 +108,7 @@ inventory = "0.1"
108108
once_cell = "1.5"
109109
pin-project-lite = "0.2"
110110
pyo3 = "0.15"
111-
pyo3-asyncio-macros = { path = "pyo3-asyncio-macros", version = "=0.14.0", optional = true }
111+
pyo3-asyncio-macros = { path = "pyo3-asyncio-macros", version = "=0.15.0", optional = true }
112112

113113
[dev-dependencies]
114114
pyo3 = { version = "0.15", features = ["macros"] }

pyo3-asyncio-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pyo3-asyncio-macros"
33
description = "Proc Macro Attributes for PyO3 Asyncio"
4-
version = "0.14.0"
4+
version = "0.15.0"
55
authors = ["Andrew J Westlake <[email protected]>"]
66
readme = "../README.md"
77
keywords = ["pyo3", "python", "ffi", "async", "asyncio"]

src/async_std.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,7 @@ pub fn get_current_locals(py: Python) -> PyResult<TaskLocals> {
140140
///
141141
/// The event loop runs until the given future is complete.
142142
///
143-
/// After this function returns, the event loop can be resumed with either [`run_until_complete`] or
144-
/// [`run_forever`](`crate::run_forever`)
143+
/// After this function returns, the event loop can be resumed with [`run_until_complete`]
145144
///
146145
/// # Arguments
147146
/// * `event_loop` - The Python event loop that should run the future

src/generic.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,7 @@ where
9292

9393
/// Run the event loop until the given Future completes
9494
///
95-
/// After this function returns, the event loop can be resumed with either [`run_until_complete`] or
96-
/// [`run_forever`](`crate::run_forever`)
95+
/// After this function returns, the event loop can be resumed with [`run_until_complete`]
9796
///
9897
/// # Arguments
9998
/// * `event_loop` - The Python event loop that should run the future

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@
251251
//!
252252
//! ```toml
253253
//! [dependencies.pyo3-asyncio]
254-
//! version = "0.13"
254+
//! version = "0.15"
255255
//! features = ["attributes"]
256256
//! ```
257257
//!
@@ -264,7 +264,7 @@
264264
//!
265265
//! ```toml
266266
//! [dependencies.pyo3-asyncio]
267-
//! version = "0.13"
267+
//! version = "0.15"
268268
//! features = ["async-std-runtime"]
269269
//! ```
270270
//!
@@ -277,7 +277,7 @@
277277
//!
278278
//! ```toml
279279
//! [dependencies.pyo3-asyncio]
280-
//! version = "0.13"
280+
//! version = "0.15"
281281
//! features = ["tokio-runtime"]
282282
//! ```
283283
//!
@@ -290,7 +290,7 @@
290290
//!
291291
//! ```toml
292292
//! [dependencies.pyo3-asyncio]
293-
//! version = "0.13"
293+
//! version = "0.15"
294294
//! features = ["testing"]
295295
//! ```
296296

src/tokio.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,7 @@ fn multi_thread() -> Builder {
161161
///
162162
/// The event loop runs until the given future is complete.
163163
///
164-
/// After this function returns, the event loop can be resumed with either [`run_until_complete`] or
165-
/// [`crate::run_forever`]
164+
/// After this function returns, the event loop can be resumed with [`run_until_complete`]
166165
///
167166
/// # Arguments
168167
/// * `event_loop` - The Python event loop that should run the future

0 commit comments

Comments
 (0)