From 344225bf6d8826aa2f9a36ad8bb537028cff7cb4 Mon Sep 17 00:00:00 2001 From: NthTensor Date: Wed, 25 Jun 2025 22:19:29 -0400 Subject: [PATCH 1/2] chore: add badges to readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index c70073e..02d8549 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,8 @@ # Forte +[![Crates.io](https://img.shields.io/crates/v/forte.svg)](https://crates.io/crates/forte) +[![Docs](https://docs.rs/forte/badge.svg)](https://docs.rs/forte/latest/forte/) + An async-compatible thread-pool aiming for "speed through simplicity". Forte is a parallel & async work scheduler designed to accommodate very large workloads with many short-lived tasks. It replicates the `rayon_core` api but with native support for futures and async tasks. From 1a99d0d6520dad56af60ba6569f29af4d27883cf Mon Sep 17 00:00:00 2001 From: NthTensor Date: Wed, 25 Jun 2025 22:19:45 -0400 Subject: [PATCH 2/2] chore: use dev version on main --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dd2f57f..ae7424f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "forte" -version = "1.0.0-alpha.3" +version = "1.0.0-dev" edition = "2024" license = "MIT OR Apache-2.0" description = "A low-overhead thread-pool with support for non-static async closures"