From f4564c17f304b5bdb3d600e79ed33789a68a7b61 Mon Sep 17 00:00:00 2001 From: Georgianna James <97406156+georgiannajames@users.noreply.github.com> Date: Tue, 26 Nov 2024 07:57:43 -0500 Subject: [PATCH] release branch for download fix (#90) --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- Cargo.toml | 2 +- py_src/fusion/__init__.py | 2 +- pyproject.toml | 4 ++-- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2cf980..eeb7ba8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.4] - 2024-11-22 +* download bug fix for credentials with proxies + ## [2.0.3] - 2024-11-22 * x509 certificate auth support for FID diff --git a/Cargo.lock b/Cargo.lock index 1c63c30..cba29bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1483,7 +1483,7 @@ dependencies = [ [[package]] name = "pyfusion" -version = "2.0.4-dev0" +version = "2.0.4" dependencies = [ "bincode", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 6d165e1..b8f68bb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyfusion" -version = "2.0.4-dev0" +version = "2.0.4" edition = "2021" diff --git a/py_src/fusion/__init__.py b/py_src/fusion/__init__.py index 06e2e7a..11d3e1e 100644 --- a/py_src/fusion/__init__.py +++ b/py_src/fusion/__init__.py @@ -2,7 +2,7 @@ __author__ = """Fusion Devs""" __email__ = "fusion_developers@jpmorgan.com" -__version__ = "2.0.4-dev0" +__version__ = "2.0.4" from fusion._fusion import FusionCredentials from fusion.fs_sync import fsync diff --git a/pyproject.toml b/pyproject.toml index a387f50..abaf145 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyfusion" -version = "2.0.4-dev0" +version = "2.0.4" homepage = "https://github.com/jpmorganchase/fusion" description = "JPMC Fusion Developer Tools" @@ -237,7 +237,7 @@ exclude_lines = [ [tool.bumpversion] -current_version = "2.0.4-dev0" +current_version = "2.0.4" parse = '(?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?P[a-z]+)(?P\d+))?' serialize = [ '{major}.{minor}.{patch}-{release}{candidate}',