Skip to content

Commit 309fc32

Browse files
authored
chore: 1.10.1 [skip ci] (#1370)
## [1.10.1](v1.10.0...v1.10.1) (2025-03-27) ### Maintenance -- All Languages * **dafny:** update ddb model ([#1357](#1357)) ([8f68a3e](8f68a3e)) ### Maintenance -- Java * **java:** harden LocalCMCTests.java ([#1365](#1365)) ([c0deb24](c0deb24)) ### Miscellaneous * add proper sleep handling in StormTracker for Python and .NET ([#1369](#1369)) ([77fd007](77fd007)) * **CI:** Allow local testing ([#1358](#1358)) ([5ecb410](5ecb410))
1 parent 77fd007 commit 309fc32

File tree

17 files changed

+42
-23
lines changed

17 files changed

+42
-23
lines changed

AwsCryptographicMaterialProviders/runtimes/net/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
[assembly: AssemblyTitle("AWS.Cryptography.MaterialProviders")]
44

55
// This should be kept in sync with the version number in MPL.csproj
6-
[assembly: AssemblyVersion("1.10.0")]
6+
[assembly: AssemblyVersion("1.10.1")]

AwsCryptographicMaterialProviders/runtimes/net/MPL.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<IsPackable>true</IsPackable>
77

8-
<Version>1.10.0</Version>
8+
<Version>1.10.1</Version>
99

1010
<AssemblyName>AWS.Cryptography.MaterialProviders</AssemblyName>
1111
<PackageId>AWS.Cryptography.MaterialProviders</PackageId>

AwsCryptographicMaterialProviders/runtimes/python/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws-cryptographic-material-providers"
3-
version = "1.10.0"
3+
version = "1.10.1"
44
description = "AWS Cryptographic Material Providers Library for Python"
55
authors = ["AWS Crypto Tools <[email protected]>"]
66
packages = [
@@ -13,10 +13,10 @@ readme = "README.rst"
1313

1414
[tool.poetry.dependencies]
1515
python = "^3.11.0"
16-
aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"}
17-
aws-cryptography-internal-kms = {path = "../../../ComAmazonawsKms/runtimes/python"}
18-
aws-cryptography-internal-dynamodb = {path = "../../../ComAmazonawsDynamodb/runtimes/python"}
19-
aws-cryptography-internal-primitives = {path = "../../../AwsCryptographyPrimitives/runtimes/python"}
16+
aws-cryptography-internal-standard-library = "1.10.1"
17+
aws-cryptography-internal-kms = "1.10.1"
18+
aws-cryptography-internal-dynamodb = "1.10.1"
19+
aws-cryptography-internal-primitives = "1.10.1"
2020

2121
# Package testing
2222

AwsCryptographyPrimitives/runtimes/net/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
[assembly: AssemblyTitle("AWS.Cryptography.Internal.AwsCryptographyPrimitives")]
44

55
// This should be kept in sync with the version number in Crypto.csproj
6-
[assembly: AssemblyVersion("1.10.0")]
6+
[assembly: AssemblyVersion("1.10.1")]

AwsCryptographyPrimitives/runtimes/net/Crypto.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<IsPackable>true</IsPackable>
77

8-
<Version>1.10.0</Version>
8+
<Version>1.10.1</Version>
99

1010
<AssemblyName>AWS.Cryptography.Internal.AwsCryptographyPrimitives</AssemblyName>
1111
<PackageId>AWS.Cryptography.Internal.AwsCryptographyPrimitives</PackageId>

AwsCryptographyPrimitives/runtimes/python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws-cryptography-internal-primitives"
3-
version = "1.10.0"
3+
version = "1.10.1"
44
description = ""
55
authors = ["AWS Crypto Tools <[email protected]>"]
66
packages = [
@@ -12,7 +12,7 @@ include = ["**/internaldafny/generated/*.py"]
1212

1313
[tool.poetry.dependencies]
1414
python = "^3.11.0"
15-
aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"}
15+
aws-cryptography-internal-standard-library = "1.10.1"
1616
cryptography = "^43.0.1"
1717

1818
# Package testing

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [1.10.1](https://github.com/aws/aws-cryptographic-material-providers-library/compare/v1.10.0...v1.10.1) (2025-03-27)
4+
5+
This release is available in the following languages:
6+
7+
- Java
8+
9+
### Maintenance -- All Languages
10+
11+
- **dafny:** update ddb model ([#1357](https://github.com/aws/aws-cryptographic-material-providers-library/issues/1357)) ([8f68a3e](https://github.com/aws/aws-cryptographic-material-providers-library/commit/8f68a3ec0e07dfdad9d25376412617dc4932aa0a))
12+
13+
### Maintenance -- Java
14+
15+
- **java:** harden LocalCMCTests.java ([#1365](https://github.com/aws/aws-cryptographic-material-providers-library/issues/1365)) ([c0deb24](https://github.com/aws/aws-cryptographic-material-providers-library/commit/c0deb245a2c8562c8adc6f6fce66e42c8bee8118))
16+
17+
### Miscellaneous
18+
19+
- add proper sleep handling in StormTracker for Python and .NET ([#1369](https://github.com/aws/aws-cryptographic-material-providers-library/issues/1369)) ([77fd007](https://github.com/aws/aws-cryptographic-material-providers-library/commit/77fd007ecac4347087340fd74d56805ae57d3704))
20+
- **CI:** Allow local testing ([#1358](https://github.com/aws/aws-cryptographic-material-providers-library/issues/1358)) ([5ecb410](https://github.com/aws/aws-cryptographic-material-providers-library/commit/5ecb410c3e79d5e986a98281a952bdd3807412a2))
21+
322
## [1.10.0](https://github.com/aws/aws-cryptographic-material-providers-library/compare/v1.9.0...v1.10.0) (2025-03-24)
423

524
This release is available in the following languages:

ComAmazonawsDynamodb/runtimes/net/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
[assembly: AssemblyTitle("AWS.Cryptography.Internal.ComAmazonawsDynamodb")]
44

55
// This should be kept in sync with the version number in ComAmazonawsDynamodb.csproj
6-
[assembly: AssemblyVersion("1.10.0")]
6+
[assembly: AssemblyVersion("1.10.1")]

ComAmazonawsDynamodb/runtimes/net/ComAmazonawsDynamodb.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
66
<IsPackable>true</IsPackable>
77

8-
<Version>1.10.0</Version>
8+
<Version>1.10.1</Version>
99

1010
<AssemblyName>AWS.Cryptography.Internal.ComAmazonawsDynamodb</AssemblyName>
1111
<PackageId>AWS.Cryptography.Internal.ComAmazonawsDynamodb</PackageId>

ComAmazonawsDynamodb/runtimes/python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "aws-cryptography-internal-dynamodb"
3-
version = "1.10.0"
3+
version = "1.10.1"
44
description = ""
55
authors = ["AWS Crypto Tools <[email protected]>"]
66
packages = [
@@ -13,7 +13,7 @@ include = ["**/internaldafny/generated/*.py"]
1313
[tool.poetry.dependencies]
1414
python = "^3.11.0"
1515
boto3 = "^1.35.42"
16-
aws-cryptography-internal-standard-library = {path = "../../../StandardLibrary/runtimes/python"}
16+
aws-cryptography-internal-standard-library = "1.10.1"
1717
# Package testing
1818

1919
[tool.poetry.group.test]

0 commit comments

Comments
 (0)