audit-labs/audit-tools

A collection of scripts, queries, and other goodies you can use in an audit.

clone: git clone https://gitbay.org/audit-labs/audit-tools.git

2cf1e663c85a1a73368757c11810d59923e5565c

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-08-08T03:52:39Z

Release v1.0.0

Bump version to 1.0.0, add CHANGELOG, and document the stability commitment.
 CHANGELOG.md   | 27 +++++++++++++++++++++++++++
 README.org     |  6 ++++++
 pyproject.toml |  2 +-
 3 files changed, 34 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..907641e
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,27 @@
+# Changelog
+
+All notable changes to this project are documented here. The format is based on
+[Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres
+to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+
+## [1.0.0] - 2026-08-07
+
+First tagged release. Prior work was untagged; this marks the collection as stable
+and gives engagements an exact revision to pin to.
+
+### Added
+
+- Interactive terminal UI (`audit_tui.py`) that runs audits against GitHub,
+  GitLab, and AWS — pick a platform, enter connection details, choose checks, and
+  watch live progress.
+- Evidence collectors and security-posture checks for GitHub (branch protection
+  and rulesets, audit log), GitLab, and AWS (account, network, logging, password
+  policy, S3).
+- Database access collectors (MySQL, Postgres, MongoDB) and OS-level checks.
+- Reproducible audit sampling CLI plus a standalone HTML sampling tool.
+- Dependency extras (`analysis`, `dashboards`, `aws`, `collectors`, `mongo`,
+  `tui`, `all`, `dev`) so a locked-down auditing laptop installs only what a
+  procedure needs.
+- CodeQL and Ruff CI.
+
+[1.0.0]: https://github.com/audit-labs/audit-tools/releases/tag/v1.0.0
diff --git a/README.org b/README.org
index 6bd469c..4e65528 100644
--- a/README.org
+++ b/README.org
@@ -89,6 +89,12 @@ check plus a summary — with a progress bar and per-check results:
 
 See =tui/README.md= for details. GitHub, GitLab, and AWS are supported.
 
+** Stability
+
+*Audit Tools* is stable as of *v1.0.0*. It is a curated collection of runnable
+scripts and an interactive TUI rather than an importable library, so each release
+is tagged to give an engagement an exact revision to pin to.
+
 ** Contributing
 
 Contributions are welcome. You can contribute by:
diff --git a/pyproject.toml b/pyproject.toml
index 72102e6..e7f29f4 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
 
 [project]
 name = "audit-tools"
-version = "0.1.0"
+version = "1.0.0"
 description = "Scripts for programmatically gathering IT audit evidence from cloud, source control, databases, and operating systems."
 readme = { file = "README.org", content-type = "text/plain" }
 requires-python = ">=3.10"