diff --git a/CHANGELOG.md b/CHANGELOG.md index b83ae3f..d53c720 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and the project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.13.0] — 2026-09-03 + ### Added - **`agentdfir analyze `** — one command runs every analysis stage in the right order: normalize (only when the overlay is missing or the package is @@ -445,7 +447,9 @@ and interoperability exports. on all evidence-derived output; bounded parsers; zip-slip defense on archive extraction; secrets never printed by default. -[Unreleased]: https://github.com/efij/AgentDFIR/compare/v0.12.0...HEAD +[Unreleased]: https://github.com/efij/AgentDFIR/compare/v0.13.0...HEAD +[0.13.0]: https://github.com/efij/AgentDFIR/compare/v0.12.1...v0.13.0 +[0.12.1]: https://github.com/efij/AgentDFIR/compare/v0.12.0...v0.12.1 [0.12.0]: https://github.com/efij/AgentDFIR/compare/v0.11.0...v0.12.0 [0.11.0]: https://github.com/efij/AgentDFIR/compare/v0.10.0...v0.11.0 [0.10.0]: https://github.com/efij/AgentDFIR/compare/v0.9.0...v0.10.0 diff --git a/internal/version/version.go b/internal/version/version.go index 55779a8..47b6469 100644 --- a/internal/version/version.go +++ b/internal/version/version.go @@ -3,7 +3,7 @@ package version // Version is the collector version. Overridable at build time via // -ldflags "-X github.com/efij/AgentDFIR/internal/version.Version=vX.Y.Z". -var Version = "0.13.0-dev" +var Version = "0.13.0" // ADFIRVersion is the evidence package format version this binary writes. const ADFIRVersion = "0.1"