diff --git a/.changeset/add_basic_postgres.md b/.changeset/add_basic_postgres.md deleted file mode 100644 index 4fe49390..00000000 --- a/.changeset/add_basic_postgres.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -default: minor ---- - -# Add basic postgres diff --git a/.changeset/cap_scan_backoff.md b/.changeset/cap_scan_backoff.md deleted file mode 100644 index 41bba392..00000000 --- a/.changeset/cap_scan_backoff.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -default: patch ---- - -# Cap exponential scan backoff - -Cap the exponential backoff for failed host scans at 3 days. Previously the backoff was unbounded, which meant a host with a high failure streak could overflow `time.Duration` and be permanently excluded from scanning. diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d40f52b..928df801 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## 0.2.1 (2026-06-22) + +### Features + +- Add basic postgres + +### Fixes + +#### Cap exponential scan backoff + +Cap the exponential backoff for failed host scans at 3 days. Previously the backoff was unbounded, which meant a host with a high failure streak could overflow `time.Duration` and be permanently excluded from scanning. + ## 0.2.0 (2026-05-15) ### Breaking Changes diff --git a/go.mod b/go.mod index eab33b67..1096a140 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module go.sia.tech/explored // v0.2.0 +module go.sia.tech/explored // v0.2.1 go 1.26.0