diff --git a/README.md b/README.md index 7121b84b..cd027b86 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ An [AWS Professional Service](https://aws.amazon.com/professional-services/) ope The Serverless Data Lake Framework (SDLF) is a collection of reusable artifacts aimed at accelerating the delivery of enterprise data lakes on AWS, shortening the deployment time to production from several months to a few weeks. It can be used by AWS teams, partners and customers to implement the foundational structure of a data lake following best practices. +**It is recommended to use the [latest stable release](https://github.com/awslabs/aws-serverless-data-lake-framework/releases) when setting up SDLF.** + **For users of SDLF 1.x, version 1 is still available on the [master branch](https://github.com/awslabs/aws-serverless-data-lake-framework/tree/master). Development of newer versions of SDLF (2.x) happens on branch main. The workshop still contains sections for version 1 as well.** ## Motivation diff --git a/deploy.sh b/deploy.sh index ab5ab1b8..457e4076 100755 --- a/deploy.sh +++ b/deploy.sh @@ -7,7 +7,7 @@ underline=$(tput smul) notunderline=$(tput rmul) notbold=$(tput sgr0) -version () { echo "awssdlf/2.5.0.beta-0"; } +version () { echo "awssdlf/2.5.0-beta.1"; } usage () { echo " --version -- Prints the SDLF version diff --git a/sdlf-dataset/pyproject.toml b/sdlf-dataset/pyproject.toml index df420b72..c05b5c6b 100644 --- a/sdlf-dataset/pyproject.toml +++ b/sdlf-dataset/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sdlf.dataset" -version = "2.5.0-beta.0" +version = "2.5.0-beta.1" description = "AWS Serverless Data Lake Framework" authors = ["Amazon Web Services"] license = "MIT-0" diff --git a/sdlf-foundations/pyproject.toml b/sdlf-foundations/pyproject.toml index bc53ac3e..14c64df5 100644 --- a/sdlf-foundations/pyproject.toml +++ b/sdlf-foundations/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sdlf.foundations" -version = "2.5.0-beta.0" +version = "2.5.0-beta.1" description = "AWS Serverless Data Lake Framework" authors = ["Amazon Web Services"] license = "MIT-0" diff --git a/sdlf-foundations/src/lambda/catalog/src/lambda_function.py b/sdlf-foundations/src/lambda/catalog/src/lambda_function.py index c068b886..c5f22365 100755 --- a/sdlf-foundations/src/lambda/catalog/src/lambda_function.py +++ b/sdlf-foundations/src/lambda/catalog/src/lambda_function.py @@ -8,7 +8,7 @@ from botocore.config import Config from botocore.exceptions import ClientError -session_config = Config(user_agent_extra="awssdlf/2.5.0-beta.0") +session_config = Config(user_agent_extra="awssdlf/2.5.0-beta.1") logger = logging.getLogger() logger.setLevel(logging.INFO) diff --git a/sdlf-pipeline/pyproject.toml b/sdlf-pipeline/pyproject.toml index befb4249..ef3c98bc 100644 --- a/sdlf-pipeline/pyproject.toml +++ b/sdlf-pipeline/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sdlf.pipeline" -version = "2.5.0-beta.0" +version = "2.5.0-beta.1" description = "AWS Serverless Data Lake Framework" authors = ["Amazon Web Services"] license = "MIT-0" diff --git a/sdlf-stage-ecsfargate/pyproject.toml b/sdlf-stage-ecsfargate/pyproject.toml index a687398f..771cc598 100644 --- a/sdlf-stage-ecsfargate/pyproject.toml +++ b/sdlf-stage-ecsfargate/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sdlf.stage-ecsfargate" -version = "2.5.0-beta.0" +version = "2.5.0-beta.1" description = "AWS Serverless Data Lake Framework" authors = ["Amazon Web Services"] license = "MIT-0" @@ -18,7 +18,7 @@ exclude = ["**/*.yaml"] python = "^3.12" aws-cdk-lib = "^2.151.0" constructs = ">=10.0.0,<11.0.0" -sdlf-pipeline = "^2.5.0b0" +sdlf-pipeline = "^2.5.0b1" [build-system] requires = ["poetry-core"] diff --git a/sdlf-stage-emrserverless/pyproject.toml b/sdlf-stage-emrserverless/pyproject.toml index 26d7241b..4d4f844d 100644 --- a/sdlf-stage-emrserverless/pyproject.toml +++ b/sdlf-stage-emrserverless/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sdlf.stage-emrserverless" -version = "2.5.0-beta.0" +version = "2.5.0-beta.1" description = "AWS Serverless Data Lake Framework" authors = ["Amazon Web Services"] license = "MIT-0" @@ -18,7 +18,7 @@ exclude = ["**/*.yaml"] python = "^3.12" aws-cdk-lib = "^2.151.0" constructs = ">=10.0.0,<11.0.0" -sdlf-pipeline = "^2.5.0b0" +sdlf-pipeline = "^2.5.0b1" [build-system] requires = ["poetry-core"] diff --git a/sdlf-stage-glue/pyproject.toml b/sdlf-stage-glue/pyproject.toml index f7b5a20c..59844b7a 100644 --- a/sdlf-stage-glue/pyproject.toml +++ b/sdlf-stage-glue/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sdlf.stage-glue" -version = "2.5.0-beta.0" +version = "2.5.0-beta.1" description = "AWS Serverless Data Lake Framework" authors = ["Amazon Web Services"] license = "MIT-0" @@ -18,7 +18,7 @@ exclude = ["**/*.yaml"] python = "^3.12" aws-cdk-lib = "^2.151.0" constructs = ">=10.0.0,<11.0.0" -sdlf-pipeline = "^2.5.0b0" +sdlf-pipeline = "^2.5.0b1" [build-system] requires = ["poetry-core"] diff --git a/sdlf-stage-lambda/pyproject.toml b/sdlf-stage-lambda/pyproject.toml index 00fc58b6..4f8d7d84 100644 --- a/sdlf-stage-lambda/pyproject.toml +++ b/sdlf-stage-lambda/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sdlf.stage-lambda" -version = "2.5.0-beta.0" +version = "2.5.0-beta.1" description = "AWS Serverless Data Lake Framework" authors = ["Amazon Web Services"] license = "MIT-0" @@ -18,7 +18,7 @@ exclude = ["**/*.yaml"] python = "^3.12" aws-cdk-lib = "^2.151.0" constructs = ">=10.0.0,<11.0.0" -sdlf-pipeline = "^2.5.0b0" +sdlf-pipeline = "^2.5.0b1" [build-system] requires = ["poetry-core"] diff --git a/sdlf-team/pyproject.toml b/sdlf-team/pyproject.toml index b27f8b8d..ca171228 100644 --- a/sdlf-team/pyproject.toml +++ b/sdlf-team/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sdlf.team" -version = "2.5.0-beta.0" +version = "2.5.0-beta.1" description = "AWS Serverless Data Lake Framework" authors = ["Amazon Web Services"] license = "MIT-0"