Release v2.1.0 (#1800)

This commit is contained in:
Alonso Guevara 2025-03-11 18:16:08 -06:00 committed by GitHub
parent 53950f8442
commit 0d363e6957
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 30 additions and 21 deletions

22
.semversioner/2.1.0.json Normal file
View File

@ -0,0 +1,22 @@
{
"changes": [
{
"description": "Add support for JSON input files.",
"type": "minor"
},
{
"description": "Updated the prompt tunning client to support csv-metadata injection and updated output file types to match the new naming convention.",
"type": "minor"
},
{
"description": "Add check for custom model types while config loading",
"type": "patch"
},
{
"description": "Adds general-purpose pipeline run state object.",
"type": "patch"
}
],
"created_at": "2025-03-11T23:53:00+00:00",
"version": "2.1.0"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Add support for JSON inuput files."
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Updated the prompt tunning client to support csv-metadata injection and updated ourput file types to match the new naming convention."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Remove spacy model from toml file"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Adds general-purpose pipeline run state object."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Add check for custom model tyoes while config loading"
}

View File

@ -1,6 +1,13 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.
## 2.1.0
- minor: Add support for JSON input files.
- minor: Updated the prompt tunning client to support csv-metadata injection and updated output file types to match the new naming convention.
- patch: Add check for custom model types while config loading
- patch: Adds general-purpose pipeline run state object.
## 2.0.0
- major: Add children to communities to avoid re-compute.

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "graphrag"
# Maintainers: do not change the version here manually, use ./scripts/release.sh
version = "2.0.0"
version = "2.1.0"
description = "GraphRAG: A graph-based retrieval-augmented generation (RAG) system."
authors = [
"Alonso Guevara Fernández <alonsog@microsoft.com>",