Skip to content

Commit 0eccd50

Browse files
authored
release/20251024 (#167)
release/20251024
1 parent 6a65930 commit 0eccd50

4 files changed

Lines changed: 20 additions & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,3 +143,12 @@ jobs:
143143
TWINE_USERNAME: __token__
144144
TWINE_PASSWORD: ${{ secrets.PYPI_API_FUSIONDEVS }}
145145
run: uv run twine upload dist/*
146+
147+
- name: publish to Test PyPI
148+
env:
149+
TWINE_USERNAME: __token__
150+
TWINE_PASSWORD: ${{ secrets.PYPI_TEST_API_FUSIONDEVS }}
151+
run: uv run twine upload --repository-url https://test.pypi.org/legacy/ dist/*
152+
153+
154+

CHANGELOG.md

Lines changed: 8 additions & 3 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+
## [3.0.2] - 2025-10-24
9+
* Download bug fix for multi part file
10+
* User agent header fix
11+
* Pagination enhancement for Product, Dataset and attributes
12+
813
## [3.0.1] - 2025-09-05
914
* Revert the License
1015

@@ -13,7 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1318
* Rust code conversion to python
1419
* Python 3.13 support
1520
* Download date time logic fix
16-
* BCBS Reports
21+
* Reports
1722

1823
## [2.0.17] - 2025-08-19
1924
* Enhance and reorganize documentation site.
@@ -23,7 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2328
* Handle the changes API returning empty list for the dataset distributions during download.
2429

2530
## [2.0.15] - 2025-07-25
26-
* Added various BCBS related functions for Reports, Report Attributes and Linkage of terms to Report Attrributes
31+
* Added various functions for Reports, Report Attributes and Linkage of terms to Report Attrributes
2732
* Includes fix for date format in bulk upload of file
2833
* Added fusions logging to the existing loggers if present; which will remove forced use of fusions loggers.
2934

@@ -69,7 +74,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6974
* Embeddings API functionality
7075

7176
## [2.0.6] - 2025-01-16
72-
* BCBS functionality
77+
* Reports and dataflows functionality
7378

7479
## [2.0.5] - 2024-12-12
7580
* Application ID handling in dataset creation

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__ = "3.0.2-dev3"
5+
__version__ = "3.0.2"
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 = "3.0.2-dev3"
3+
version = "3.0.2"
44

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

248248

249249
[tool.bumpversion]
250-
current_version = "3.0.2-dev3"
250+
current_version = "3.0.2"
251251
parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[a-z]+)(?P<candidate>\d+))?'
252252
serialize = [
253253
'{major}.{minor}.{patch}-{release}{candidate}',

0 commit comments

Comments
 (0)