From ca3f7ccc5092ac21254398637367f4dff0f0f347 Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Fri, 5 Sep 2025 23:10:58 -0700 Subject: [PATCH 1/2] Update README.md with an OpenSSF scorecard badge Since we now run the OpenSSF scorecard analysis in the GitHub CI workflow, let's publish the badge on the readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 41b7031..bd61746 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ [![SonarQube Security](https://sonarcloud.io/api/project_badges/measure?project=msteinert_bstring&metric=security_rating)](https://sonarcloud.io/project/overview?id=msteinert_bstring) [![SonarQube Reliability](https://sonarcloud.io/api/project_badges/measure?project=msteinert_bstring&metric=reliability_rating)](https://sonarcloud.io/project/overview?id=msteinert_bstring) [![SonarQube Maintainability](https://sonarcloud.io/api/project_badges/measure?project=msteinert_bstring&metric=sqale_rating)](https://sonarcloud.io/project/overview?id=msteinert_bstring) +[![OpenSSF Scorecard](https://img.shields.io/ossf-scorecard/github.com/msteinert/bstring?label=openssf+scorecard&style=flat)](https://scorecard.dev/viewer/?uri=github.com/msteinert/bstring) # Better String Library From 6d2463d129b7f3646a14443c05846e6ef007fa99 Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Sun, 7 Sep 2025 22:33:06 -0700 Subject: [PATCH 2/2] Improve descriptions of features in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bd61746..2e4c42a 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,9 @@ This is a fork of Paul Hsieh's [Better String Library][]. The following features (or mis-features, depending on your point of view) are included: -1. Autotools build system +1. Build system (Meson and Autotools) 2. Updated test suite based on [Check][] -3. Add [Valgrind][] to the workflow +3. Add memory profiling with [Valgrind][] to the workflow 4. Add continuous integration via GitHub Actions 5. Remove C++ code 6. Other various improvements @@ -19,7 +19,7 @@ Currently this fork should be binary-compatible with the original code. The only source incompatibility is the removal of the `const_bstring` type. [Better String Library]: http://bstring.sourceforge.net/ -[Check]: http://check.sourceforge.net/ +[Check]: https://github.com/libcheck/check [Valgrind]: http://valgrind.org/ ## Building