Skip to content

Commit 1a926cf

Browse files
Async functionality release (#110)
1 parent ae74ee2 commit 1a926cf

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88

9+
## [2.0.9] - 2025-03-11
10+
* Adding async functionality to FusionHTTPFileSystem
11+
912
## [2.0.8] - 2025-03-04
1013
* GZ supported distribution type
1114
* from bytes to handle multipart upload for large files

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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyfusion"
3-
version = "2.0.9-dev0"
3+
version = "2.0.9"
44
edition = "2021"
55

66

py_src/fusion/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = """Fusion Devs"""
44
__email__ = "fusion_developers@jpmorgan.com"
5-
__version__ = "2.0.9-dev0"
5+
__version__ = "2.0.9"
66

77
from fusion._fusion import FusionCredentials
88
from fusion.fs_sync import fsync

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyfusion"
3-
version = "2.0.9-dev0"
3+
version = "2.0.9"
44

55
homepage = "https://github.com/jpmorganchase/fusion"
66
description = "JPMC Fusion Developer Tools"
@@ -241,7 +241,7 @@ exclude_lines = [
241241

242242

243243
[tool.bumpversion]
244-
current_version = "2.0.9-dev0"
244+
current_version = "2.0.9"
245245
parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[a-z]+)(?P<candidate>\d+))?'
246246
serialize = [
247247
'{major}.{minor}.{patch}-{release}{candidate}',

uv.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.

0 commit comments

Comments
 (0)