diff --git a/.github/workflows/github_release.yml b/.github/workflows/github_release.yml index 87fe01e..80cb387 100644 --- a/.github/workflows/github_release.yml +++ b/.github/workflows/github_release.yml @@ -2,7 +2,7 @@ name: Create GitHub Release on: push: - branches: [ main ] + branches: [ main, master ] jobs: build: diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 6ed7ec0..ca727d3 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -3,7 +3,7 @@ name: Poetry Publish on: push: - branches: [ main ] + branches: [ main, master ] jobs: deploy: diff --git a/CHANGELOG.md b/CHANGELOG.md index edf1ab3..3597c81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 3.0.0 - 2024-07-22 +## [3.0.0] - 2024-07-22 ### Added - Updated logging - New stdout logging experience with colourised output that is easier to read. @@ -16,7 +16,7 @@ ### Removed - Removed the option to log to a file. This was not a useful feature, was hard to maintain, and can be achieved by redirecting stdout to a file. -## 2.0.0 - 2021-01-02 +## [2.0.0] - 2021-01-02 ### Added - Massive enhancements to make much better use of multiprocessing for the large HIBP password file, as well as more efficient importing and handling of Active Directory user hashes. - Updated directory structure to play more nicely with more OS versions and flavours, rather than installing in the `src` directory. @@ -24,5 +24,5 @@ - New option to obfuscate genuine password NTLM hashes in logging output. This is achieved by further hashing the hash with a randomly generated salt. - Active Directory computer accounts are now not imported with AD user hashes. There is little value in assessing these, so no point importing them. -## 1.2.0 - 2020-03-22 +## [1.2.0] - 2020-03-22 Initial Release