Skip to content

Commit

Permalink
Release/20241024 (#80)
Browse files Browse the repository at this point in the history
* release 10/24/2024 branch
  • Loading branch information
georgiannajames authored Oct 24, 2024
1 parent 4a1be5c commit 4c66e02
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 710 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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.1] - 2024-10-24

* s3 download bug fix
* Download latest dataset enhancement to handle non-ISO-formatted dates

## [1.4.0] - 2024-10-11

* dataset lineage exploration and creation
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 = "1.4.1-dev0"
version = "1.4.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__ = "1.4.1-dev0"
__version__ = "1.4.1"

from fusion._fusion import FusionCredentials
from fusion.fs_sync import fsync
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pyfusion"
version = "1.4.1-dev0"
version = "1.4.1"

homepage = "https://github.com/jpmorganchase/fusion"
description = "JPMC Fusion Developer Tools"
Expand Down Expand Up @@ -92,7 +92,7 @@ dev-dependencies = [
"auditwheel>=6.0.0; sys_platform=='linux'",
"bump-my-version",
"cffi>=1.16.0; sys_platform=='darwin'",
"freezegun>=1.4.1-dev0",
"freezegun>=1.4.1",
"ipython",
"maturin>=1.6,<2.0",
"moto[s3]>=5.0.5",
Expand Down Expand Up @@ -224,7 +224,7 @@ omit = [


[tool.bumpversion]
current_version = "1.4.1-dev0"
current_version = "1.4.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
Loading

0 comments on commit 4c66e02

Please sign in to comment.