Skip to content

Commit

Permalink
Bumping version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Isaev committed Jan 10, 2025
1 parent 2d95165 commit 24bb394
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## v1.3.1 (January 10, 2025)

### New features
* Fix Rust build (#275)
* Update user agent for DCP (#276)
* Address Rust security issue (#279)
* Refactor(benchmarks): Overhaul Lightning Checkpointing, DCP, dataset scenarios; add DynamoDB writes and results exploitation notebook (#274, #280, #285, #286)
* Add single rank PyTorch checkpoint benchmark (#289)
* Update torch version restriction (<2.5.0) and bind torchdata to last version with DataPipes (#283)

### Breaking changes
* No breaking changes.

## v1.3.0 (November 21, 2024)

### New features
Expand Down
4 changes: 2 additions & 2 deletions s3torchconnector/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "s3torchconnector"
version = "1.3.0"
version = "1.3.1"
description = "S3 connector integration for PyTorch"
requires-python = ">=3.8,<3.13"
readme = "README.md"
Expand All @@ -23,7 +23,7 @@ classifiers = [

dependencies = [
"torch >= 2.0.1, != 2.5.0",
"s3torchconnectorclient >= 1.3.0",
"s3torchconnectorclient == 1.3.1",
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion s3torchconnectorclient/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions s3torchconnectorclient/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s3torchconnectorclient"
version = "1.3.0"
version = "1.3.1"
edition = "2021"
publish = false
license = "BSD-3-Clause"
Expand Down Expand Up @@ -28,5 +28,6 @@ rusty-fork = "0.3.0"
tracing-appender = "0.2.3"

[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
extension-module = ["pyo3/extension-module"]
gil-refs = ["pyo3/gil-refs"]
2 changes: 1 addition & 1 deletion s3torchconnectorclient/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "s3torchconnectorclient"
version = "1.3.0"
version = "1.3.1"
description = "Internal S3 client implementation for s3torchconnector"
requires-python = ">=3.8,<3.13"
readme = "README.md"
Expand Down

0 comments on commit 24bb394

Please sign in to comment.