From a42d3e59652b7adbd4a688f0e099f647f14f0901 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 26 Nov 2024 15:15:56 +0000 Subject: [PATCH] chore(main): release pgai 0.2.0 --- .release-please-manifest.json | 2 +- projects/pgai/CHANGELOG.md | 27 +++++++++++++++++++++++++++ projects/pgai/pgai/__init__.py | 2 +- 3 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 projects/pgai/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 818d3320..26424578 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "projects/pgai": "0.1.0" + "projects/pgai": "0.2.0" } diff --git a/projects/pgai/CHANGELOG.md b/projects/pgai/CHANGELOG.md new file mode 100644 index 00000000..6a7f746d --- /dev/null +++ b/projects/pgai/CHANGELOG.md @@ -0,0 +1,27 @@ +# Changelog + +## [0.2.0](https://github.com/timescale/pgai/compare/pgai-v0.1.0...pgai-v0.2.0) (2024-11-26) + + +### Features + +* add Ollama support to vectorizer ([6a4a449](https://github.com/timescale/pgai/commit/6a4a449e99e2e5e62b5f551206a0b28e5ad40802)) + + +### Bug Fixes + +* make vectorizer worker poll for new vectorizers ([0672e7a](https://github.com/timescale/pgai/commit/0672e7a71e2792c984ce9a590a06de9bfd25c8b5)) + + +### Miscellaneous + +* a new database for each test ([4ed938b](https://github.com/timescale/pgai/commit/4ed938bd86932bf21340e14007210d8dc6fd72e1)) +* add logo to pgai pypi ([3366368](https://github.com/timescale/pgai/commit/336636872b39ce371d801f4ffacd1ea57e67b9f5)) +* add test for recursive text splitting ([#207](https://github.com/timescale/pgai/issues/207)) ([4a35fc6](https://github.com/timescale/pgai/commit/4a35fc693395bc4125b9654650043cad5929889e)) +* migrate project commands from Make to Just ([42a8f79](https://github.com/timescale/pgai/commit/42a8f795c89bfc7526008dda7c99a3d6a4ecce70)) +* migrate to uv and hatch ([#188](https://github.com/timescale/pgai/issues/188)) ([627cf33](https://github.com/timescale/pgai/commit/627cf33e802cac01f2a204aecf994ceb9509a84e)) +* refactor test infra ([ac845ca](https://github.com/timescale/pgai/commit/ac845ca8dc834e0359113fd63d30c6ec98e041a7)) +* run pgai tests against extension from source ([ffc20d2](https://github.com/timescale/pgai/commit/ffc20d243c2a632d01c5e3476ddbc6c636d994c1)) +* scope postgres_container fixture to class ([12c1780](https://github.com/timescale/pgai/commit/12c17809ec235d759e37eaa0898ea3274fea6319)) +* separate the dev/test/build between the projects ([183be9e](https://github.com/timescale/pgai/commit/183be9e82632287c35081c4eefd81ff99d4bd4ba)) +* test the cli instead of the lambda handler ([#204](https://github.com/timescale/pgai/issues/204)) ([3a48f82](https://github.com/timescale/pgai/commit/3a48f82b103175b83d1036bff31b00f5122606aa)) diff --git a/projects/pgai/pgai/__init__.py b/projects/pgai/pgai/__init__.py index 3dc1f76b..d3ec452c 100644 --- a/projects/pgai/pgai/__init__.py +++ b/projects/pgai/pgai/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.2.0"