Skip to content

Commit

Permalink
Release/1.3.5 (#369)
Browse files Browse the repository at this point in the history
* fix: new type (#368)
  • Loading branch information
ralphrass authored Jun 28, 2024
1 parent 6df7534 commit dd8cefe
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 1 deletion.
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.3.5](https://github.com/quintoandar/butterfree/releases/tag/1.3.5)
* Auto create feature sets ([#368](https://github.com/quintoandar/butterfree/pull/368))

## [1.3.4](https://github.com/quintoandar/butterfree/releases/tag/1.3.4)
* Fix Cassandra Config and tests ([#366](https://github.com/quintoandar/butterfree/pull/366))

Expand Down
1 change: 1 addition & 0 deletions butterfree/configs/db/cassandra_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ def translate(self, schema: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
"""
cassandra_mapping = {
"timestamptype": "timestamp",
"timestampntztype": "timestamp",
"binarytype": "boolean",
"booleantype": "boolean",
"datetype": "timestamp",
Expand Down
5 changes: 5 additions & 0 deletions docs/source/butterfree.configs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ butterfree.configs.logger module
:undoc-members:
:show-inheritance:

.. automodule:: butterfree.configs.logger
:members:
:undoc-members:
:show-inheritance:

Module contents
---------------

Expand Down
11 changes: 11 additions & 0 deletions docs/source/butterfree.constants.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ butterfree.constants.spark\_constants module
:show-inheritance:


.. automodule:: butterfree.constants.migrations
:members:
:undoc-members:
:show-inheritance:


.. automodule:: butterfree.constants.spark_constants
:members:
:undoc-members:
Expand Down Expand Up @@ -77,6 +83,11 @@ butterfree.constants.window\_definitions module
:undoc-members:
:show-inheritance:

.. automodule:: butterfree.constants.window_definitions
:members:
:undoc-members:
:show-inheritance:

Module contents
---------------

Expand Down
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.3.4"
__version__ = "1.3.5"
__repository_url__ = "https://github.com/quintoandar/butterfree"

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

0 comments on commit dd8cefe

Please sign in to comment.