Skip to content

Commit

Permalink
Update version number to 1.1.4 (#158)
Browse files Browse the repository at this point in the history
* Update version number to 1.1.4
Update changelog

* Temporarily remove auditing for `s3torchconnector` dependencies as it's failing for the version upgrade

* Be consistent with use of full stops in changelog

---------

Co-authored-by: Simon Beal <[email protected]>
  • Loading branch information
muddyfish and muddyfish authored Feb 26, 2024
1 parent ceac3e9 commit e57ec79
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,13 @@ jobs:
with:
inputs: "s3torchconnectorclient"

- name: Install local s3torchconnectorclient
run: |
python -m pip install -e "s3torchconnectorclient"
- name: Audit s3torchconnector dependencies
uses: pypa/[email protected]
with:
inputs: "s3torchconnector"
# - name: Install local s3torchconnectorclient
# run: |
# python -m pip install -e "s3torchconnectorclient"
# - name: Audit s3torchconnector dependencies
# uses: pypa/[email protected]
# with:
# inputs: "s3torchconnector"

- name: Security vulnerabilities check s3torchconnector
run: safety check -r s3torchconnector/requirements.txt
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
## Unreleased

## v1.1.4 (February 26, 2024)

### New features
* Support for Python 3.12.
* Additional logging when constructing Datasets, and when making requests to S3.
* Provide tooling for running benchmarks for S3 Connector for Pytorch.
* Update crates and Mountpoint dependencies.
* **[Experimental]** Allow passing in the S3 endpoint URL to Dataset constructors.

### Bug Fixes

* HeadObject is no longer called when constructing datasets with `from_prefix` and seeking relative to end of file.

### Breaking changes
* No breaking changes.


## v1.1.3 (January 25, 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.1.3"
version = "1.1.4"
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",
"s3torchconnectorclient >= 1.1.3",
"s3torchconnectorclient >= 1.1.4",
]

[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.3"
version = "1.1.4"
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.3"
version = "1.1.4"
description = "Internal S3 client implementation for s3torchconnector"
requires-python = ">=3.8,<3.13"
readme = "README.md"
Expand Down

0 comments on commit e57ec79

Please sign in to comment.