From 2274bdf7e22644b44683a32599037ab1827f6f00 Mon Sep 17 00:00:00 2001 From: Georgianna James <97406156+georgiannajames@users.noreply.github.com> Date: Fri, 13 Sep 2024 10:55:55 -0400 Subject: [PATCH] release branch (#71) * release branch --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- py_src/fusion/__init__.py | 2 +- pyproject.toml | 4 ++-- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd08ab8..db80789 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## [1.3.3] - 2024-09-13 + +* support custom headers in credentials +* support additional headers in upload +* fix list datasets filter by product + ## [1.3.2] - 2024-08-23 * add bespoke ssl certificated to aiohttp session diff --git a/Cargo.lock b/Cargo.lock index 4575dfc..530980d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1409,7 +1409,7 @@ dependencies = [ [[package]] name = "pyfusion" -version = "1.3.3-dev0" +version = "1.3.3" dependencies = [ "bincode", "chrono", diff --git a/Cargo.toml b/Cargo.toml index c585ff6..3d71389 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyfusion" -version = "1.3.3-dev0" +version = "1.3.3" edition = "2021" diff --git a/py_src/fusion/__init__.py b/py_src/fusion/__init__.py index 1dd047b..fd46074 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__ = "1.3.3-dev0" +__version__ = "1.3.3" from fusion._fusion import FusionCredentials from fusion.fs_sync import fsync diff --git a/pyproject.toml b/pyproject.toml index bf8f17e..30e369b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyfusion" -version = "1.3.3-dev0" +version = "1.3.3" homepage = "https://github.com/jpmorganchase/fusion" description = "JPMC Fusion Developer Tools" @@ -224,7 +224,7 @@ omit = [ [tool.bumpversion] -current_version = "1.3.3-dev0" +current_version = "1.3.3" parse = '(?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?P[a-z]+)(?P\d+))?' serialize = [ '{major}.{minor}.{patch}-{release}{candidate}',