Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions aws/logs_monitoring/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ if [ "$PROD_RELEASE" = true ] ; then
# Get the latest code
git pull origin master

# Bump version number
# Bump version number in settings.py and template.yml
echo "Bumping the current version number to the desired"
perl -pi -e "s/DD_FORWARDER_VERSION = \"${CURRENT_VERSION}/DD_FORWARDER_VERSION = \"${VERSION}/g" settings.py
perl -pi -e "s/Version: ${CURRENT_VERSION}/Version: ${VERSION}/g" template.yaml
perl -pi -e "s/DD_FORWARDER_VERSION = \"[0-9\.]+/DD_FORWARDER_VERSION = \"${VERSION}/g" settings.py
perl -pi -e "s/Version: [0-9\.]+/Version: ${VERSION}/g" template.yaml

# Commit version number changes to git
git add lambda_function.py template.yaml README.md
Expand Down
2 changes: 1 addition & 1 deletion aws/logs_monitoring/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,4 @@ def __init__(self, name, pattern, placeholder):
DD_CUSTOM_TAGS = "ddtags"
DD_SERVICE = "service"
DD_HOST = "host"
DD_FORWARDER_VERSION = "3.16.0"
DD_FORWARDER_VERSION = "3.16.3"