From ec60a628b2fc8b18cc32b472f3d5df5d6609e504 Mon Sep 17 00:00:00 2001 From: Lucas McDonald Date: Tue, 22 Oct 2024 15:11:36 -0700 Subject: [PATCH] chore(release): Allow local testing (#890) --- .../runtimes/java/build.gradle.kts | 2 +- .../runtimes/python/pyproject.toml | 8 ++++---- AwsCryptographyPrimitives/runtimes/python/pyproject.toml | 2 +- ComAmazonawsDynamodb/runtimes/python/pyproject.toml | 3 +-- ComAmazonawsKms/runtimes/python/pyproject.toml | 2 +- .../runtimes/java/build.gradle.kts | 4 ++-- project.properties | 2 +- 7 files changed, 11 insertions(+), 12 deletions(-) diff --git a/AwsCryptographicMaterialProviders/runtimes/java/build.gradle.kts b/AwsCryptographicMaterialProviders/runtimes/java/build.gradle.kts index fc59cd502..3231cd019 100644 --- a/AwsCryptographicMaterialProviders/runtimes/java/build.gradle.kts +++ b/AwsCryptographicMaterialProviders/runtimes/java/build.gradle.kts @@ -18,7 +18,7 @@ var props = Properties().apply { var dafnyVersion = props.getProperty("dafnyVersion") group = "software.amazon.cryptography" -version = "1.7.2" +version = "1.7.2-SNAPSHOT" description = "AWS Cryptographic Material Providers Library" java { diff --git a/AwsCryptographicMaterialProviders/runtimes/python/pyproject.toml b/AwsCryptographicMaterialProviders/runtimes/python/pyproject.toml index 54372a9c4..a6e61c270 100644 --- a/AwsCryptographicMaterialProviders/runtimes/python/pyproject.toml +++ b/AwsCryptographicMaterialProviders/runtimes/python/pyproject.toml @@ -13,10 +13,10 @@ readme = "README.rst" [tool.poetry.dependencies] python = "^3.11.0" -aws-cryptography-internal-standard-library = "~1.7.2" -aws-cryptography-internal-kms = "~1.7.2" -aws-cryptography-internal-dynamodb = "~1.7.2" -aws-cryptography-internal-primitives = "~1.7.2" +aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"} +aws-cryptography-internal-kms = {path = "../../../ComAmazonawsKms/runtimes/python"} +aws-cryptography-internal-dynamodb = {path = "../../../ComAmazonawsDynamodb/runtimes/python"} +aws-cryptography-internal-primitives = {path = "../../../AwsCryptographyPrimitives/runtimes/python"} # Package testing diff --git a/AwsCryptographyPrimitives/runtimes/python/pyproject.toml b/AwsCryptographyPrimitives/runtimes/python/pyproject.toml index 0e8305998..a0d8b41e9 100644 --- a/AwsCryptographyPrimitives/runtimes/python/pyproject.toml +++ b/AwsCryptographyPrimitives/runtimes/python/pyproject.toml @@ -12,7 +12,7 @@ include = ["**/internaldafny/generated/*.py"] [tool.poetry.dependencies] python = "^3.11.0" -aws-cryptography-internal-standard-library = "~1.7.2" +aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"} cryptography = "^43.0.1" # Package testing diff --git a/ComAmazonawsDynamodb/runtimes/python/pyproject.toml b/ComAmazonawsDynamodb/runtimes/python/pyproject.toml index fb219b0a8..ce3d915e1 100644 --- a/ComAmazonawsDynamodb/runtimes/python/pyproject.toml +++ b/ComAmazonawsDynamodb/runtimes/python/pyproject.toml @@ -13,8 +13,7 @@ include = ["**/internaldafny/generated/*.py"] [tool.poetry.dependencies] python = "^3.11.0" boto3 = "^1.35.42" -aws-cryptography-internal-standard-library = "~1.7.2" - +aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"} # Package testing [tool.poetry.group.test] diff --git a/ComAmazonawsKms/runtimes/python/pyproject.toml b/ComAmazonawsKms/runtimes/python/pyproject.toml index 7c530d5aa..91d73c127 100644 --- a/ComAmazonawsKms/runtimes/python/pyproject.toml +++ b/ComAmazonawsKms/runtimes/python/pyproject.toml @@ -13,7 +13,7 @@ include = ["**/internaldafny/generated/*.py"] [tool.poetry.dependencies] python = "^3.11.0" boto3 = "^1.35.42" -aws-cryptography-internal-standard-library = "~1.7.2" +aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"} # Package testing diff --git a/TestVectorsAwsCryptographicMaterialProviders/runtimes/java/build.gradle.kts b/TestVectorsAwsCryptographicMaterialProviders/runtimes/java/build.gradle.kts index 27a01a712..66970a641 100644 --- a/TestVectorsAwsCryptographicMaterialProviders/runtimes/java/build.gradle.kts +++ b/TestVectorsAwsCryptographicMaterialProviders/runtimes/java/build.gradle.kts @@ -20,7 +20,7 @@ var props = Properties().apply { var dafnyVersion = props.getProperty("dafnyVersion") group = "software.amazon.cryptography" -version = "1.7.2" +version = "1.7.2-SNAPSHOT" description = "TestAwsCryptographicMaterialProviders" java { @@ -68,7 +68,7 @@ repositories { dependencies { implementation("org.dafny:DafnyRuntime:${dafnyVersion}") implementation("software.amazon.smithy.dafny:conversion:0.1.1") - implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.7.2") + implementation("software.amazon.cryptography:aws-cryptographic-material-providers:1.7.2-SNAPSHOT") implementation(platform("software.amazon.awssdk:bom:2.25.1")) implementation("software.amazon.awssdk:dynamodb") implementation("software.amazon.awssdk:dynamodb-enhanced") diff --git a/project.properties b/project.properties index e34e3e39e..908ff1b6a 100644 --- a/project.properties +++ b/project.properties @@ -7,4 +7,4 @@ # And the Dotnet projects include and parse this file. dafnyVersion=4.8.0 dafnyVerifyVersion=4.8.0 -mplVersion=1.7.2 +mplVersion=1.7.2-SNAPSHOT