Skip to content

Commit bf28ece

Browse files
authored
Update version number to 1.2.1 (#187)
1 parent 1869891 commit bf28ece

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
## Unreleased
2-
3-
### New features
1+
## v1.2.1 (March 14, 2024)
42

53
### Breaking changes
6-
* Separate completely Rust logs and Python logs. Logs from Rust components, used for debugging purposes
4+
* Separate completely Rust logs and Python logs. Logs from Rust components used for debugging purposes
75
are configured through the following environment variables: S3_TORCH_CONNECTOR_DEBUG_LOGS,
86
S3_TORCH_CONNECTOR_LOGS_DIR_PATH.
97

@@ -12,7 +10,7 @@ S3_TORCH_CONNECTOR_LOGS_DIR_PATH.
1210
### New features
1311
* Add PyTorch Lightning checkpoints support
1412

15-
### Bug Fixes / Improvements
13+
### Bug fixes / Improvements
1614
* Fix deadlock when enabling CRT debug logs. Removed former experimental method _enable_debug_logging().
1715
* Refactor User-Agent setup for extensibility.
1816
* Update lightning User-Agent prefix to `s3torchconnector/{__version__} (lightning; {lightning.__version__}`.
@@ -30,7 +28,7 @@ S3_TORCH_CONNECTOR_LOGS_DIR_PATH.
3028
* Update crates and Mountpoint dependencies.
3129
* **[Experimental]** Allow passing in the S3 endpoint URL to Dataset constructors.
3230

33-
### Bug Fixes
31+
### Bug fixes
3432

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

s3torchconnector/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "s3torchconnector"
7-
version = "1.2.0"
7+
version = "1.2.1"
88
description = "S3 connector integration for PyTorch"
99
requires-python = ">=3.8,<3.13"
1010
readme = "README.md"
@@ -23,7 +23,7 @@ classifiers = [
2323

2424
dependencies = [
2525
"torch >= 2.0.1",
26-
"s3torchconnectorclient >= 1.2.0",
26+
"s3torchconnectorclient >= 1.2.1",
2727
]
2828

2929
[project.optional-dependencies]

s3torchconnectorclient/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

s3torchconnectorclient/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s3torchconnectorclient"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
edition = "2021"
55
publish = false
66
license = "BSD-3-Clause"

s3torchconnectorclient/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "s3torchconnectorclient"
7-
version = "1.2.0"
7+
version = "1.2.1"
88
description = "Internal S3 client implementation for s3torchconnector"
99
requires-python = ">=3.8,<3.13"
1010
readme = "README.md"

0 commit comments

Comments
 (0)