diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c11dcd..f2cf980 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.3] - 2024-11-22 +* x509 certificate auth support for FID + ## [2.0.2] - 2024-11-14 * Metadata interface updated to use snake case style and handle camel case under hood diff --git a/Cargo.lock b/Cargo.lock index ed21fad..cb240a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1483,7 +1483,7 @@ dependencies = [ [[package]] name = "pyfusion" -version = "2.0.2" +version = "2.0.3" dependencies = [ "bincode", "chrono", diff --git a/Cargo.toml b/Cargo.toml index c516946..fa4ceb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyfusion" -version = "2.0.2" +version = "2.0.3" edition = "2021" diff --git a/py_src/fusion/__init__.py b/py_src/fusion/__init__.py index 5738d62..11abdb9 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.2" +__version__ = "2.0.3" from fusion._fusion import FusionCredentials from fusion.fs_sync import fsync diff --git a/pyproject.toml b/pyproject.toml index 306f0ee..4033e14 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyfusion" -version = "2.0.2" +version = "2.0.3" homepage = "https://github.com/jpmorganchase/fusion" description = "JPMC Fusion Developer Tools" @@ -237,7 +237,7 @@ exclude_lines = [ [tool.bumpversion] -current_version = "2.0.2" +current_version = "2.0.3" parse = '(?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?P[a-z]+)(?P\d+))?' serialize = [ '{major}.{minor}.{patch}-{release}{candidate}',