Skip to content

Commit

Permalink
Bump 29.1.1 (#287)
Browse files Browse the repository at this point in the history
* Bump 29.1.1

* Check VERSION file content

* Move test to deploy-dockerhub.sh
  • Loading branch information
leplatrem authored Sep 22, 2022
1 parent 41ac8b8 commit 3c1aaa4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ CHANGELOG
This document describes changes between each past release as well as
the version control of each dependency.

29.1.1 (2022-09-21)
===================

**Bug Fixes**

- Fix version number in ``VERSION`` file (and thus in ``/__version__``)


29.1.0 (2022-09-13)
===================

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
29.0.0
29.1.1
6 changes: 6 additions & 0 deletions bin/deploy-dockerhub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,12 @@ INTEGRATION_TEST_DOCKER_REPO="mozilla/remote-settings-integration-tests"
# docker tag and push git branch to dockerhub
if [ -n "$1" ]; then
TAG="$1"
APP_VERSION="$(cat VERSION)"
if [ "$TAG" != "$APP_VERSION" ];
then
echo "Version mismatch (tag=$TAG, version=$APP_VERSION)";
exit 1;
fi
echo "Tag and push server and integration test containers to Dockerhub"
echo "${SERVER_DOCKER_REPO}:${TAG}"
echo "${INTEGRATION_TEST_DOCKER_REPO}:${TAG}"
Expand Down

0 comments on commit 3c1aaa4

Please sign in to comment.