Skip to content

Commit

Permalink
chore(release): v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sassanh committed Feb 25, 2025
1 parent 4dbfc56 commit 50127e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/integration_delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ jobs:
- name: Extract Version from CHANGELOG.md
run: |
FIRST_HEADER=$(sed -n '/## /s/## //p' CHANGELOG.md | head -n 1)
echo "FIRST_HEADER=$FIRST_HEADER"
if [ "$FIRST_HEADER" == "Upcoming" ]; then
if [[ "${{ steps.extract-version.outputs.VERSION }}" =~ ^[0-9]+\.[0-9]+\.[0-9]+\.dev[0-9]+ ]]; then
VERSION_CHANGELOG="This is a development version."
Expand All @@ -236,6 +237,7 @@ jobs:
fi
else
VERSION_CHANGELOG=$(echo $FIRST_HEADER | sed 's/Version //')
echo "VERSION_CHANGELOG=$VERSION_CHANGELOG"
if [[ "${{ steps.extract-version.outputs.VERSION }}" =~ ^$VERSION_CHANGELOG\.dev[0-9]+ ]]; then
echo "Error: Version extracted from CHANGELOG.md does not match the version in pyproject.toml"
exit 1
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Upcoming
## Version 1.2.1

- fix: tenacity is now a production dependency

Expand Down Expand Up @@ -31,7 +31,7 @@
- feat(web-ui): add `ubo-redirect-server` service
- refactor(web-ui): add notifications for when starting/stopping the hotspot fails in the system manager
- refactor(web-ui): move starting/stopping of the required hotspot system services to the `ubo-hotspot` service (the more general version of the `ubo-redirect-server` service which runs the redirect server as its main process.)
- fix(core): uninstall RPi.GPIO after installing python packages in `install.sh` related: <https://github.com/adafruit/Adafruit_Blinka/issues/910> - closes #231
- fix(core): uninstall RPi.GPIO after installing python packages in `install.sh` [related](https://github.com/adafruit/Adafruit_Blinka/issues/910) - closes #231
- fix(web-ui): avoid web-ui stop procedure being triggered when qr-code input is cancelled
- fix(system): run `time.sleep` for both branches of the ping loop (success and failure) to avoid high cpu usage of the system process
- fix(camera): avoid values read from qrcode being overridden by `None` values of alternative patterns - closes #230
Expand Down

0 comments on commit 50127e4

Please sign in to comment.