Skip to content

Commit

Permalink
patch release branch for to dict fix (#84)
Browse files Browse the repository at this point in the history
* patch release branch for to dict fix
  • Loading branch information
georgiannajames authored Nov 4, 2024
1 parent 02d0897 commit 0f8214f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyfusion"
version = "2.0.1-dev0"
version = "2.0.1"
edition = "2021"


Expand Down
2 changes: 1 addition & 1 deletion py_src/fusion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Fusion Devs"""
__email__ = "[email protected]"
__version__ = "2.0.1-dev0"
__version__ = "2.0.1"

from fusion._fusion import FusionCredentials
from fusion.fs_sync import fsync
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -237,7 +237,7 @@ exclude_lines = [


[tool.bumpversion]
current_version = "2.0.1-dev0"
current_version = "2.0.1"
parse = '(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[a-z]+)(?P<candidate>\d+))?'
serialize = [
'{major}.{minor}.{patch}-{release}{candidate}',
Expand Down

0 comments on commit 0f8214f

Please sign in to comment.