diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b574190..05885026 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Unreleased +## v1.2.2 (March 22, 2024) ### New features * Expose a new class, S3ClientConfig, with `throughput_target_gbps` and `part_size` parameters of the inner S3 client. diff --git a/s3torchconnector/pyproject.toml b/s3torchconnector/pyproject.toml index efdf9983..707d79ff 100644 --- a/s3torchconnector/pyproject.toml +++ b/s3torchconnector/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "s3torchconnector" -version = "1.2.1" +version = "1.2.2" description = "S3 connector integration for PyTorch" requires-python = ">=3.8,<3.13" readme = "README.md" @@ -23,7 +23,7 @@ classifiers = [ dependencies = [ "torch >= 2.0.1", - "s3torchconnectorclient >= 1.2.1", + "s3torchconnectorclient >= 1.2.2", ] [project.optional-dependencies] diff --git a/s3torchconnectorclient/Cargo.toml b/s3torchconnectorclient/Cargo.toml index 5781b03b..da929483 100644 --- a/s3torchconnectorclient/Cargo.toml +++ b/s3torchconnectorclient/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s3torchconnectorclient" -version = "1.2.1" +version = "1.2.2" edition = "2021" publish = false license = "BSD-3-Clause" diff --git a/s3torchconnectorclient/pyproject.toml b/s3torchconnectorclient/pyproject.toml index 09c6d5de..9a848a5e 100644 --- a/s3torchconnectorclient/pyproject.toml +++ b/s3torchconnectorclient/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "s3torchconnectorclient" -version = "1.2.1" +version = "1.2.2" description = "Internal S3 client implementation for s3torchconnector" requires-python = ">=3.8,<3.13" readme = "README.md"