From b662e7388c40047754cab5a69650a5dda03e1f84 Mon Sep 17 00:00:00 2001 From: tanglearncode Date: Sun, 13 Sep 2026 13:58:20 +0800 Subject: [PATCH] Add status badges to the README The README now opens with badges for the CI workflow on main, the crates.io version, docs.rs, the PolyForm license (linking to the Licensing section) and the minimum supported Rust version, 1.85, from Cargo.toml. The crates.io and docs.rs badges read "not found" until the first release is published; they need no change afterwards. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index fb030b0..9767085 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # shimforge +[![CI](https://github.com/XTSoftwareLabs/shimforge/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/XTSoftwareLabs/shimforge/actions/workflows/ci.yml) +[![crates.io](https://img.shields.io/crates/v/shimforge.svg)](https://crates.io/crates/shimforge) +[![docs.rs](https://img.shields.io/docsrs/shimforge)](https://docs.rs/shimforge) +[![License: PolyForm](https://img.shields.io/badge/license-PolyForm-blue.svg)](#licensing) +[![Rust 1.85+](https://img.shields.io/badge/rust-1.85%2B-orange.svg)](https://github.com/XTSoftwareLabs/shimforge/blob/main/Cargo.toml) + Write unit tests without adding a test only trait or changing the existing production code. ## Why shimforge