Skip to content

Commit

Permalink
Prep for v0.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
slawlor committed Dec 5, 2024
1 parent 1b57549 commit 480a326
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ractor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ractor"
version = "0.13.2"
version = "0.13.3"
authors = ["Sean Lawlor", "Evan Au", "Dillon George"]
description = "A actor framework for Rust"
documentation = "https://docs.rs/ractor"
Expand Down
6 changes: 3 additions & 3 deletions ractor/src/actor/actor_cell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -541,9 +541,9 @@ impl ActorCell {
self.inner.tree.stop_all_children(reason);
}

/// Tries to retrieve this actor's supervisor.
///
/// Returns [None] if this actor has no supervisor at the given instance or
/// Tries to retrieve this actor's supervisor.
///
/// Returns [None] if this actor has no supervisor at the given instance or
/// [Some(ActorCell)] supervisor if one is configured.
pub fn try_get_superivisor(&self) -> Option<ActorCell> {
self.inner.tree.try_get_supervisor()
Expand Down
2 changes: 1 addition & 1 deletion ractor_cluster/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ractor_cluster"
version = "0.13.2"
version = "0.13.3"
authors = ["Sean Lawlor", "Evan Au", "Dillon George"]
description = "Distributed cluster environment of Ractor actors"
documentation = "https://docs.rs/ractor"
Expand Down
2 changes: 1 addition & 1 deletion ractor_cluster_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ractor_cluster_derive"
version = "0.13.2"
version = "0.13.3"
authors = ["Sean Lawlor <[email protected]>"]
description = "Derives for ractor_cluster"
license = "MIT"
Expand Down

0 comments on commit 480a326

Please sign in to comment.