Skip to content

Commit

Permalink
Release/1.4.2 (#377)
Browse files Browse the repository at this point in the history
* fix: version, format (#376)
  • Loading branch information
ralphrass authored Oct 3, 2024
1 parent 8d04d0b commit 3214783
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each

## [Unreleased]

## [1.4.2](https://github.com/quintoandar/butterfree/releases/tag/1.4.2)
* Minor fixes ([#374](https://github.com/quintoandar/butterfree/pull/376))

## [1.4.1](https://github.com/quintoandar/butterfree/releases/tag/1.4.1)
* Performance Improvements ([#374](https://github.com/quintoandar/butterfree/pull/374))

Expand Down
2 changes: 1 addition & 1 deletion butterfree/_cli/migrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def create_instance(cls: Type[FeatureSetPipeline]) -> FeatureSetPipeline:
parameters = sig.parameters

if "run_date" in parameters:
run_date = datetime.datetime.today().strftime("%y-%m-%d")
run_date = datetime.datetime.today().strftime("%Y-%m-%d")
return cls(run_date)

return cls()
Expand Down
1 change: 0 additions & 1 deletion butterfree/pipelines/feature_set_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ def run(
soon. Use only if strictly necessary.
"""

# Step 1: Construct input dataframe from the source.
dataframe = self.source.construct(
client=self.spark_client,
Expand Down
1 change: 0 additions & 1 deletion docs/source/butterfree.constants.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ butterfree.constants.migrations module
butterfree.constants.spark\_constants module
--------------------------------------------


.. automodule:: butterfree.constants.spark_constants
:members:
:undoc-members:
Expand Down
3 changes: 3 additions & 0 deletions docs/source/butterfree.dataframe_service.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ butterfree.dataframe\_service.partitioning module
:undoc-members:
:show-inheritance:

butterfree.dataframe\_service.repartition module
------------------------------------------------

.. automodule:: butterfree.dataframe_service.repartition
:members:
:undoc-members:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ parameters-validation>=1.1.5,<2.0
pyspark==3.5.1
typer==0.4.2
typing-extensions>3.7.4,<5
boto3==1.17.*
boto3==1.35.*
numpy==1.26.4
delta-spark==3.2.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup

__package_name__ = "butterfree"
__version__ = "1.4.1"
__version__ = "1.4.2"
__repository_url__ = "https://github.com/quintoandar/butterfree"

with open("requirements.txt") as f:
Expand Down

0 comments on commit 3214783

Please sign in to comment.