diff --git a/CHANGELOG.md b/CHANGELOG.md index 767818d2d..0806d64e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.7.0] - 2023-09-17 + - Add avatars to users (@Vinnybod) - Update plugin documentation, update embedded plugins to not abuse notifications (@Vinnybod) - Add additional pre-commit hooks for code cleanup (@Vinnybod) @@ -585,7 +587,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated shellcoderdi to newest version (@Cx01N) - Added a Nim launcher (@Hubbl3) -[Unreleased]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.6.4...HEAD +[Unreleased]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.7.0...HEAD + +[5.7.0]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.6.4...v5.7.0 [5.6.4]: https://github.com/BC-SECURITY/Empire-Sponsors/compare/v5.6.3...v5.6.4 diff --git a/empire/server/common/empire.py b/empire/server/common/empire.py index 7f90eea85..47de7d840 100755 --- a/empire/server/common/empire.py +++ b/empire/server/common/empire.py @@ -40,7 +40,7 @@ from . import agents, credentials, listeners, stagers -VERSION = "5.6.4 BC Security Fork" +VERSION = "5.7.0 BC Security Fork" log = logging.getLogger(__name__) diff --git a/pyproject.toml b/pyproject.toml index 4baf759b1..8c11e64e4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "empire-bc-security-fork" -version = "5.6.4" +version = "5.7.0" description = "" authors = ["BC Security "] readme = "README.md"