Skip to content

Commit 37078c3

Browse files
authored
v7.113.0-dev (#634)
* v7.113.0.dev0 PEP 400 requires it to be devN * remove .devN versioning from logs
1 parent c7739eb commit 37078c3

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

datadog_lambda/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "7.112.0"
1+
__version__ = "7.113.0.dev0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "datadog_lambda"
3-
version = "7.112.0"
3+
version = "7.113.0.dev0"
44
description = "The Datadog AWS Lambda Library"
55
authors = ["Datadog, Inc. <[email protected]>"]
66
license = "Apache-2.0"

scripts/run_integration_tests.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,8 @@ for handler_name in "${LAMBDA_HANDLERS[@]}"; do
212212
sed -E "s/(datadog_lambda:v)([0-9]+\.[0-9]+\.[0-9]+)/\1XX/g" |
213213
sed -E "s/(datadogpy\/)([0-9]+\.[0-9]+\.[0-9]+)/\1XX/g" |
214214
sed -E "s/(python )([0-9]\.[0-9]+\.[0-9]+)/\1XX/g" |
215+
# Remove .devN versioning from logs
216+
sed -E "s/\.dev[0-9]+//g" |
215217
# Strip out run ID (from function name, resource, etc.)
216218
sed -E "s/${!run_id}/XXXX/g" |
217219
# Normalize python-requests version

0 commit comments

Comments
 (0)