diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 14ae3a9..89a1980 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -548,10 +548,10 @@ jobs: name: artifacts-win-${{ matrix.target }}-${{ matrix.python-versions }} path: dist - # Define the macos x86 64 maturin builds, across multiple python versions, these will run on macos-12 + # Define the macos x86 64 maturin builds, across multiple python versions, these will run on macos-13 macos-x86_64: #needs: tests - runs-on: macos-12 + runs-on: macos-13 strategy: matrix: python-versions: ["3.9", "3.10", "3.11", "3.12"] diff --git a/CHANGELOG.md b/CHANGELOG.md index bd39d83..f251480 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.1] - 2024-11-04 +* minor fix to to_dict methods of product, dataset, and attribute(s) classes + ## [2.0.0] - 2024-10-28 * Metadata creation for products, datasets, and attributes diff --git a/Cargo.lock b/Cargo.lock index efe28bf..ff4c7c7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1410,7 +1410,7 @@ dependencies = [ [[package]] name = "pyfusion" -version = "2.0.1-dev0" +version = "2.0.1" dependencies = [ "bincode", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 16f4e3f..ce1be76 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyfusion" -version = "2.0.1-dev0" +version = "2.0.1" edition = "2021" diff --git a/py_src/fusion/__init__.py b/py_src/fusion/__init__.py index ad37df2..0378797 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.1-dev0" +__version__ = "2.0.1" from fusion._fusion import FusionCredentials from fusion.fs_sync import fsync diff --git a/pyproject.toml b/pyproject.toml index a50cd5b..95d6454 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyfusion" -version = "2.0.1-dev0" +version = "2.0.1" homepage = "https://github.com/jpmorganchase/fusion" description = "JPMC Fusion Developer Tools" @@ -237,7 +237,7 @@ exclude_lines = [ [tool.bumpversion] -current_version = "2.0.1-dev0" +current_version = "2.0.1" parse = '(?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?P[a-z]+)(?P\d+))?' serialize = [ '{major}.{minor}.{patch}-{release}{candidate}',