Release v0.3.0 (#912)

This commit is contained in:
Alonso Guevara 2024-08-12 18:14:52 -06:00 committed by GitHub
parent 4b9f268604
commit f9c1bdd748
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 41 additions and 26 deletions

30
.semversioner/0.3.0.json Normal file
View File

@ -0,0 +1,30 @@
{
"changes": [
{
"description": "Implement auto templating API.",
"type": "minor"
},
{
"description": "Implement query engine API.",
"type": "minor"
},
{
"description": "Fix file dumps using json for non ASCII chars",
"type": "patch"
},
{
"description": "Stabilize smoke tests for query context building",
"type": "patch"
},
{
"description": "fix query embedding",
"type": "patch"
},
{
"description": "fix sort_context & max_tokens params in verb",
"type": "patch"
}
],
"created_at": "2024-08-12T23:51:49+00:00",
"version": "0.3.0"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Implement query engine API."
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Implement auto templating API."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "fix query embedding"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Fix file dumps using json for non ASCII chars"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Stabilize smoke tests for query context building"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "fix sort_context & max_tokens params in verb"
}

View File

@ -1,12 +1,21 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.
## 0.3.0
- minor: Implement auto templating API.
- minor: Implement query engine API.
- patch: Fix file dumps using json for non ASCII chars
- patch: Stabilize smoke tests for query context building
- patch: fix query embedding
- patch: fix sort_context & max_tokens params in verb
## 0.2.2
- patch: Add a check if there is no community record added in local search context
- patch: Add sepparate workflow for Python Tests
- patch: Docs updates
- patch: Run smoke tests on 4o
## 0.2.1

View File

@ -1,7 +1,7 @@
[tool.poetry]
name = "graphrag"
# Maintainers: do not change the version here manually, use ./scripts/release.sh
version = "0.2.2"
version = "0.3.0"
description = ""
authors = [
"Alonso Guevara Fernández <alonsog@microsoft.com>",