Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.5.0"
".": "1.6.0"
}
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file.

Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each release or unreleased log for a better organization.

## [1.6.0](https://github.com/quintoandar/butterfree/compare/1.5.0...1.6.0) (2025-02-28)


### Features

* **MLOP-2604:** Create delta writer ([#410](https://github.com/quintoandar/butterfree/issues/410)) ([98c0878](https://github.com/quintoandar/butterfree/commit/98c08785e1d542e6038f381bae5681611e542a41))


### Bug Fixes

* testing ([cc1ad97](https://github.com/quintoandar/butterfree/commit/cc1ad971e42f2d0bd6df74b0b0da1bc61bc5b22c))

## [1.5.0](https://github.com/quintoandar/butterfree/releases/tag/1.5.0)
* Fix releasing process

Expand Down
2 changes: 1 addition & 1 deletion butterfree/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Module docstring example, following Google's docstring style."""

__version__ = "1.5.0" # x-release-please-version
__version__ = "1.6.0" # x-release-please-version
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.5.0" # x-release-please-version
__version__ = "1.6.0" # x-release-please-version
__repository_url__ = "https://github.com/quintoandar/butterfree"

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