Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update version for release 1.1.1 #97

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
## Unreleased

## v1.1.1 (December 11, 2023)

### New features
* Update crates and Mountpoint dependencies
* Avoid excessive memory consumption when utilizing s3map_dataset. Issue [#89](https://github.com/awslabs/s3-connector-for-pytorch/issues/89)
* Run all tests against S3 and S3 Express

### Breaking changes
* No breaking changes.


## v1.1.0 (November 29, 2023)

### New features
Expand Down
2 changes: 1 addition & 1 deletion s3torchconnector/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
project = "Amazon S3 Connector for PyTorch"
copyright = "2023, Amazon S3"
author = "Amazon S3"
release = "1.1.0"
release = "1.1.1"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
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.1.0"
version = "1.1.1"
description = "S3 connector integration for PyTorch"
requires-python = ">=3.8,<3.12"
classifiers = [
Expand All @@ -21,7 +21,7 @@ classifiers = [

dependencies = [
"torch >= 2.0.1",
"s3torchconnectorclient >= 1.1.0",
"s3torchconnectorclient >= 1.1.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.

2 changes: 1 addition & 1 deletion s3torchconnectorclient/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s3torchconnectorclient"
version = "1.1.0"
version = "1.1.1"
edition = "2021"
publish = false
license = "BSD-3-Clause"
Expand Down
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.1.0"
version = "1.1.1"
description = "Internal S3 client implementation for s3torchconnector"
requires-python = ">=3.8,<3.12"
classifiers = [
Expand Down
Loading