diff --git a/CHANGELOG.md b/CHANGELOG.md index 9bcaa960..bd858b7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog + + +## 1.12.0 — 2024-01-08 + +### Added + +- `GGClient` now obeys rate-limits and can notify callers when hitting one. +- Added the following attributes to `IaCVulnerability`: `url`, `status`, `ignored_until`, `ignore_reason`, `ignore_comment`. +- Added the `source_found` attribute to `IaCScanParameters` and `IaCDiffScanEntities`. + ## 1.11.0 — 2023-10-16 diff --git a/changelog.d/20231221_170806_aurelien.gateau_report_rate_limit.md b/changelog.d/20231221_170806_aurelien.gateau_report_rate_limit.md deleted file mode 100644 index 8631e931..00000000 --- a/changelog.d/20231221_170806_aurelien.gateau_report_rate_limit.md +++ /dev/null @@ -1,3 +0,0 @@ -### Added - -- GGClient now obeys rate-limits and can notify callers when hitting one. diff --git a/pygitguardian/__init__.py b/pygitguardian/__init__.py index 97ec9440..01aabf49 100644 --- a/pygitguardian/__init__.py +++ b/pygitguardian/__init__.py @@ -2,7 +2,7 @@ from .client import ContentTooLarge, GGClient, GGClientCallbacks -__version__ = "1.11.0" +__version__ = "1.12.0" GGClient._version = __version__ __all__ = ["GGClient", "GGClientCallbacks", "ContentTooLarge"]