Updates to CHANGELOG and release script
This commit is contained in:
parent
fc120f02a5
commit
f21bac7d1c
2 changed files with 6 additions and 3 deletions
|
|
@ -6,9 +6,10 @@
|
||||||
* Use `no_log` on systemd unit interrogations to suppress potential sensitive output when applying Ansible
|
* Use `no_log` on systemd unit interrogations to suppress potential sensitive output when applying Ansible
|
||||||
* Support manifesting Puppet code, as well as Ansible!
|
* Support manifesting Puppet code, as well as Ansible!
|
||||||
* Support manifesting Salt code, as well as Ansible and Puppet!
|
* Support manifesting Salt code, as well as Ansible and Puppet!
|
||||||
|
* Take advantage of Jinjaturtle 0.5.5 if it's present, to render .erb templates for Puppet (as well as j2 for Ansible and Salt)
|
||||||
* A lot of under-the-bonnet refactoring to make it easier to extend to cover other config managers (that don't suck) in future.
|
* A lot of under-the-bonnet refactoring to make it easier to extend to cover other config managers (that don't suck) in future.
|
||||||
* Support for detecting Docker images.
|
* Support for detecting Docker and Podman images and enforcing their presence (by SHA256 hash).
|
||||||
* Add support for detecting Flatpaks and Snaps (manifests for Ansible code only, not Puppet or Salt at this time)
|
* Add support for detecting Flatpaks and Snaps.
|
||||||
|
|
||||||
# 0.6.0
|
# 0.6.0
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ filedust -y .
|
||||||
|
|
||||||
# Publish to Pypi
|
# Publish to Pypi
|
||||||
poetry build
|
poetry build
|
||||||
poetry publish
|
|
||||||
|
|
||||||
# Make AppImage
|
# Make AppImage
|
||||||
poetry run pyproject-appimage --output dist/Enroll.AppImage
|
poetry run pyproject-appimage --output dist/Enroll.AppImage
|
||||||
|
|
@ -86,6 +85,9 @@ for dist in ${DISTS[@]}; do
|
||||||
qubes-gpg-client --local-user "$KEYID" --detach-sign --armor "$RPM_REPO/repodata/repomd.xml" > "$RPM_REPO/repodata/repomd.xml.asc"
|
qubes-gpg-client --local-user "$KEYID" --detach-sign --armor "$RPM_REPO/repodata/repomd.xml" > "$RPM_REPO/repodata/repomd.xml.asc"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# If we got this far, publish to Poetry too
|
||||||
|
poetry publish
|
||||||
|
|
||||||
echo "==> Syncing repo to server..."
|
echo "==> Syncing repo to server..."
|
||||||
rsync -aHPvz --exclude=.git --delete "$REPO_ROOT/" "$REMOTE/"
|
rsync -aHPvz --exclude=.git --delete "$REPO_ROOT/" "$REMOTE/"
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue