Skip to content

Commit a0d6e54

Browse files
authored
Release 20260609 (#226)
1 parent 1a3ec2d commit a0d6e54

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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+
## [5.0.1] - 2026-06-09
9+
* Relax checksum validation
10+
* Removed a few functionalities which are now deprecated
11+
* Clear buffer after get_events call and fix Sonar false positives
12+
813
## [4.0.3] - 2026-04-20
914
* Improve Sonar coverage and quality compliance
1015
* Add URL encoding for parameters

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__ = "5.0.1-dev0"
5+
__version__ = "5.0.1"
66

77
from fusion.credentials 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 = "5.0.1-dev0"
3+
version = "5.0.1"
44

55
description = "JPMC Fusion Developer Tools"
66
authors = [
@@ -249,7 +249,7 @@ exclude_lines = [
249249

250250

251251
[tool.bumpversion]
252-
current_version = "5.0.1-dev0"
252+
current_version = "5.0.1"
253253
parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[a-z]+)(?P<candidate>\d+))?'
254254
serialize = [
255255
'{major}.{minor}.{patch}-{release}{candidate}',

0 commit comments

Comments
 (0)