From b8199dc1a21ad953a0f43259360fb273d163c7a5 Mon Sep 17 00:00:00 2001 From: Sean Lawlor Date: Mon, 6 Jan 2025 11:53:26 -0500 Subject: [PATCH] Prep for 0.14.3 release --- codecov.yml | 4 ++++ ractor/Cargo.toml | 2 +- ractor_cluster/Cargo.toml | 3 +-- ractor_cluster_derive/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/codecov.yml b/codecov.yml index d6fc538a..0b703953 100644 --- a/codecov.yml +++ b/codecov.yml @@ -14,3 +14,7 @@ ignore: - "ractor_cluster_integration_tests" # Protocol is all generated code and should be excluded from code coverage - "ractor_cluster/src/protocol" + # All tests.rs files are excluded + - "*/**/tests.rs" + # All test folders are excluded + - "*/**/tests" \ No newline at end of file diff --git a/ractor/Cargo.toml b/ractor/Cargo.toml index 80d14a60..4ee51b99 100644 --- a/ractor/Cargo.toml +++ b/ractor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ractor" -version = "0.14.2" +version = "0.14.3" authors = ["Sean Lawlor", "Evan Au", "Dillon George"] description = "A actor framework for Rust" documentation = "https://docs.rs/ractor" diff --git a/ractor_cluster/Cargo.toml b/ractor_cluster/Cargo.toml index 722210b3..530db561 100644 --- a/ractor_cluster/Cargo.toml +++ b/ractor_cluster/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ractor_cluster" -version = "0.14.2" +version = "0.14.3" authors = ["Sean Lawlor "] description = "Distributed cluster environment of Ractor actors" documentation = "https://docs.rs/ractor" @@ -20,7 +20,6 @@ async-trait = ["dep:async-trait", "ractor/async-trait"] default = [] [build-dependencies] -# protobuf-src = "2" protoc-bin-vendored = "3" prost-build = { version = "0.13" } diff --git a/ractor_cluster_derive/Cargo.toml b/ractor_cluster_derive/Cargo.toml index 3bc24fd5..63d17514 100644 --- a/ractor_cluster_derive/Cargo.toml +++ b/ractor_cluster_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ractor_cluster_derive" -version = "0.14.2" +version = "0.14.3" authors = ["Sean Lawlor "] description = "Derives for ractor_cluster" license = "MIT"