From 294a27275c485733c1646e172b03c4faec07ff35 Mon Sep 17 00:00:00 2001 From: Georgianna James <97406156+georgiannajames@users.noreply.github.com> Date: Fri, 11 Oct 2024 16:07:31 -0400 Subject: [PATCH] Release/20241011 (#76) * release branch for dataset lineage --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 2 +- py_src/fusion/__init__.py | 2 +- pyproject.toml | 4 ++-- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fb12b6..43de47a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ 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). +## [1.4.0] - 2024-10-11 + +* dataset lineage exploration and creation + ## [1.3.4] - 2024-09-14 * rustls support native certificates diff --git a/Cargo.lock b/Cargo.lock index c376735..a6a9c37 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1410,7 +1410,7 @@ dependencies = [ [[package]] name = "pyfusion" -version = "1.4.0-dev0" +version = "1.4.0" dependencies = [ "bincode", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 37a6f14..72beec1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyfusion" -version = "1.4.0-dev0" +version = "1.4.0" edition = "2021" diff --git a/py_src/fusion/__init__.py b/py_src/fusion/__init__.py index 3901b80..b86463d 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__ = "1.4.0-dev0" +__version__ = "1.4.0" from fusion._fusion import FusionCredentials from fusion.fs_sync import fsync diff --git a/pyproject.toml b/pyproject.toml index be930ad..40bcde9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pyfusion" -version = "1.4.0-dev0" +version = "1.4.0" homepage = "https://github.com/jpmorganchase/fusion" description = "JPMC Fusion Developer Tools" @@ -224,7 +224,7 @@ omit = [ [tool.bumpversion] -current_version = "1.4.0-dev0" +current_version = "1.4.0" parse = '(?P\d+)\.(?P\d+)\.(?P\d+)(?:-(?P[a-z]+)(?P\d+))?' serialize = [ '{major}.{minor}.{patch}-{release}{candidate}',