Skip to content

Commit efd3d80

Browse files
committed
update version to 2.10.0
1 parent 6dca61a commit efd3d80

File tree

18 files changed

+24
-24
lines changed

18 files changed

+24
-24
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ The [SDLF workshop](https://sdlf.workshop.aws/) walks you through the deployment
6666

6767
1. Get the latest stable release of SDLF, unarchive it and cd to the new folder:
6868
```
69-
curl -L -O https://github.com/awslabs/aws-serverless-data-lake-framework/archive/refs/tags/2.9.0.tar.gz
70-
tar xzf 2.9.0.tar.gz
71-
cd ./aws-serverless-data-lake-framework-2.9.0/
69+
curl -L -O https://github.com/awslabs/aws-serverless-data-lake-framework/archive/refs/tags/2.10.0.tar.gz
70+
tar xzf 2.10.0.tar.gz
71+
cd ./aws-serverless-data-lake-framework-2.10.0/
7272
```
7373

7474
2. Deploy the CodeBuild projects for bootstrapping the rest of the infrastructure:

deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ underline=$(tput smul)
77
notunderline=$(tput rmul)
88
notbold=$(tput sgr0)
99

10-
version () { echo "awssdlf/2.9.0"; }
10+
version () { echo "awssdlf/2.10.0"; }
1111

1212
usage () { echo "
1313
--version -- Prints the SDLF version

sdlf-cicd/deploy-cicd.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ die() {
1010
exit 1
1111
}
1212

13-
version () { echo "awssdlf/2.9.0"; }
13+
version () { echo "awssdlf/2.10.0"; }
1414

1515
usage () { echo "
1616
Serverless Data Lake Framework (SDLF) is a collection of infrastructure-as-code artifacts to deploy data architectures on AWS.

sdlf-cicd/deploy-role.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ die() {
1010
exit 1
1111
}
1212

13-
version () { echo "awssdlf/2.8.0"; }
13+
version () { echo "awssdlf/2.10.0"; }
1414

1515
usage () { echo "
1616
Serverless Data Lake Framework (SDLF) is a collection of infrastructure-as-code artifacts to deploy data architectures on AWS.

sdlf-datalakeLibrary/python/datalake_library/interfaces/dynamo_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class DynamoInterface:
2626
def __init__(self, configuration, log_level=None, dynamodb_client=None):
2727
self.log_level = log_level or os.getenv("LOG_LEVEL", "INFO")
2828
self._logger = init_logger(__name__, self.log_level)
29-
session_config = Config(user_agent="awssdlf/2.9.0")
29+
session_config = Config(user_agent="awssdlf/2.10.0")
3030
self.dynamodb_client = dynamodb_client or boto3.client("dynamodb", config=session_config)
3131

3232
self._config = configuration

sdlf-datalakeLibrary/python/datalake_library/interfaces/s3_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class S3Interface:
1616
def __init__(self, log_level=None, s3_client=None):
1717
self.log_level = log_level or os.getenv("LOG_LEVEL", "INFO")
1818
self._logger = init_logger(__name__, self.log_level)
19-
self._session_config = Config(user_agent="awssdlf/2.9.0")
19+
self._session_config = Config(user_agent="awssdlf/2.10.0")
2020
self._s3_client = s3_client or boto3.client("s3", config=self._session_config)
2121

2222
def download_object(self, bucket, key):

sdlf-datalakeLibrary/python/datalake_library/interfaces/sqs_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def __init__(self, queue_name, log_level=None, sqs_client=None):
1414
self.log_level = log_level or os.getenv("LOG_LEVEL", "INFO")
1515
self._logger = init_logger(__name__, self.log_level)
1616
sqs_endpoint_url = "https://sqs." + os.getenv("AWS_REGION") + ".amazonaws.com"
17-
session_config = Config(user_agent="awssdlf/2.9.0")
17+
session_config = Config(user_agent="awssdlf/2.10.0")
1818
self._sqs_client = sqs_client or boto3.client("sqs", endpoint_url=sqs_endpoint_url, config=session_config)
1919

2020
self._message_queue = self._sqs_client.get_queue_url(QueueName=queue_name)["QueueUrl"]

sdlf-datalakeLibrary/python/datalake_library/interfaces/states_interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def __init__(self, log_level=None, states_client=None):
1313
self.log_level = log_level or os.getenv("LOG_LEVEL", "INFO")
1414
self._logger = init_logger(__name__, self.log_level)
1515
stepfunctions_endpoint_url = "https://states." + os.getenv("AWS_REGION") + ".amazonaws.com"
16-
session_config = Config(user_agent="awssdlf/2.9.0")
16+
session_config = Config(user_agent="awssdlf/2.10.0")
1717
self._states_client = states_client or boto3.client(
1818
"stepfunctions", endpoint_url=stepfunctions_endpoint_url, config=session_config
1919
)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__title__ = "SDLF"
2-
__version__ = "2.9.0"
2+
__version__ = "2.10.0"

sdlf-dataset/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 = "sdlf.dataset"
3-
version = "2.9.0"
3+
version = "2.10.0"
44
description = "AWS Serverless Data Lake Framework"
55
authors = ["Amazon Web Services"]
66
license = "MIT-0"

0 commit comments

Comments
 (0)