Release v0.9.0 (#1479)

* Release v0.9.0

* Spellcheck
This commit is contained in:
Alonso Guevara 2024-12-06 14:29:55 -06:00 committed by GitHub
parent 1c3b0f34c3
commit 1a13e0fd93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 61 additions and 42 deletions

View File

@ -5,7 +5,7 @@
"type": "patch"
},
{
"description": "Allow some cicd jobs to skip PRs dedicated to doc updates only.",
"description": "Allow some CI/CD jobs to skip PRs dedicated to doc updates only.",
"type": "patch"
},
{

46
.semversioner/0.9.0.json Normal file
View File

@ -0,0 +1,46 @@
{
"changes": [
{
"description": "Refactor graph creation.",
"type": "minor"
},
{
"description": "Dependency updates",
"type": "patch"
},
{
"description": "Fix Global Search with dynamic Community selection bug",
"type": "patch"
},
{
"description": "Fix question gen.",
"type": "patch"
},
{
"description": "Optimize Final Community Reports calculation and stabilize cache",
"type": "patch"
},
{
"description": "miscellaneous code cleanup and minor changes for better alignment of style across the codebase.",
"type": "patch"
},
{
"description": "replace llm package with fnllm",
"type": "patch"
},
{
"description": "replaced md5 hash with sha256",
"type": "patch"
},
{
"description": "replaced md5 hash with sha512",
"type": "patch"
},
{
"description": "update API and add a demonstration notebook",
"type": "patch"
}
],
"created_at": "2024-12-06T20:12:30+00:00",
"version": "0.9.0"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Refactor graph creation."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "replace llm package with fnllm"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix Global Search with dynamic Community selection bug"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix question gen."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "miscellaneous code cleanup and minor changes for better alignment of style across the codebase."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "update API and add a demonstration notebook"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Optimize Final Community Reports calculation and stabilize cache"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "replaced md5 hash with sha256"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "replaced md5 hash with sha512"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Dependency updates"
}

View File

@ -1,6 +1,19 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.
## 0.9.0
- minor: Refactor graph creation.
- patch: Dependency updates
- patch: Fix Global Search with dynamic Community selection bug
- patch: Fix question gen.
- patch: Optimize Final Community Reports calculation and stabilize cache
- patch: miscellaneous code cleanup and minor changes for better alignment of style across the codebase.
- patch: replace llm package with fnllm
- patch: replaced md5 hash with sha256
- patch: replaced md5 hash with sha512
- patch: update API and add a demonstration notebook
## 0.5.0
- minor: Data model changes.

View File

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