From 8bc44596c7f59826eaf288d4a287f1a12e55359f Mon Sep 17 00:00:00 2001 From: Panos Vagenas <35837085+vagenas@users.noreply.github.com> Date: Tue, 17 Dec 2024 10:37:36 +0100 Subject: [PATCH] chore: bootstrap releasing (#3) Signed-off-by: Panos Vagenas <35837085+vagenas@users.noreply.github.com> --- CHANGELOG.md | 14 ++++++++++++++ README.md | 6 ++---- pyproject.toml | 2 +- 3 files changed, 17 insertions(+), 5 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..cda1b47 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +## [v0.1.1](https://github.com/DS4SD/docling-haystack/releases/tag/v0.1.1) - 2024-12-17 + +### Feature + +* Add docling converter ([`767e4b5`](https://github.com/DS4SD/docling-haystack/commit/767e4b5b10088d1900d4bb2cea33b18a640aec5a)) + +### Fix + +* Prevent field conflicts, add in-mem example ([`3f8794c`](https://github.com/DS4SD/docling-haystack/commit/3f8794c291c68701d7cf0e56f2bcc0af95c2656d)) +* Switch to dict-based meta extraction ([`9073ea4`](https://github.com/DS4SD/docling-haystack/commit/9073ea49389a4bc8bb3692c37d7eaa19762758b0)) + +### Documentation + +* Add docstrings ([`b87362f`](https://github.com/DS4SD/docling-haystack/commit/b87362ff15df29ed1a9e1d520be1e6090fe80d4a)) diff --git a/README.md b/README.md index 7ae3e93..f7511d1 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Docling Haystack converter - +[![PyPI version](https://img.shields.io/pypi/v/docling-haystack)](https://pypi.org/project/docling-haystack/) +[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/docling-haystack)](https://pypi.org/project/docling-haystack/) [![Poetry](https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json)](https://python-poetry.org/) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) [![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/) @@ -12,14 +12,12 @@ A [Docling](https://github.com/DS4SD/docling) converter integration for [Haystack](https://github.com/deepset-ai/haystack/). - ## Usage diff --git a/pyproject.toml b/pyproject.toml index 6c94b60..a6e6e7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "docling-haystack" -version = "0.1.0" +version = "0.1.1" # DO NOT EDIT, updated automatically description = "Docling Haystack converter" authors = ["Panos Vagenas "] readme = "README.md"