Skip to content

Commit f4564c1

Browse files
release branch for download fix (#90)
1 parent 9c3a849 commit f4564c1

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file.
55
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

8+
## [2.0.4] - 2024-11-22
9+
* download bug fix for credentials with proxies
10+
811
## [2.0.3] - 2024-11-22
912
* x509 certificate auth support for FID
1013

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.4-dev0"
3+
version = "2.0.4"
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.4-dev0"
5+
__version__ = "2.0.4"
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.4-dev0"
3+
version = "2.0.4"
44

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

238238

239239
[tool.bumpversion]
240-
current_version = "2.0.4-dev0"
240+
current_version = "2.0.4"
241241
parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[a-z]+)(?P<candidate>\d+))?'
242242
serialize = [
243243
'{major}.{minor}.{patch}-{release}{candidate}',

0 commit comments

Comments
 (0)