diff --git a/CHANGELOG.md b/CHANGELOG.md index cf127871b..413083af4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# v2024.07.16 + +## What's Changed + +- Update bootstrap-salt.sh by @javatask in https://github.com/saltstack/salt-bootstrap/pull/2005 +- Updated GitHub actions to later v4 by @dmurphy18 in https://github.com/saltstack/salt-bootstrap/pull/2004 +- Don't sort lists and dicts, as order of items matters by @dmurphy18 in https://github.com/saltstack/salt-bootstrap/pull/2006 + +## New Contributors + +- @javatask made their first contribution in https://github.com/saltstack/salt-bootstrap/pull/2005 + +**Full Changelog**: https://github.com/saltstack/salt-bootstrap/compare/v2024.07.12...v2024.07.16 + # v2024.07.12 ## What's Changed diff --git a/bootstrap-salt.ps1 b/bootstrap-salt.ps1 index 726723cf3..a428ecfe4 100644 --- a/bootstrap-salt.ps1 +++ b/bootstrap-salt.ps1 @@ -110,7 +110,7 @@ if ($help) { exit 0 } -$__ScriptVersion = "2024.07.12" +$__ScriptVersion = "2024.07.16" $ScriptName = $myInvocation.MyCommand.Name # We'll check for the Version next, because it also has no requirements diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 51983a05b..2a14290d3 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -26,7 +26,7 @@ #====================================================================================================================== set -o nounset # Treat unset variables as an error -__ScriptVersion="2024.07.12" +__ScriptVersion="2024.07.16" __ScriptName="bootstrap-salt.sh" __ScriptFullName="$0"