diff --git a/.semversioner/0.4.1.json b/.semversioner/0.4.1.json index eac9c829..bfec9254 100644 --- a/.semversioner/0.4.1.json +++ b/.semversioner/0.4.1.json @@ -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" }, { diff --git a/.semversioner/0.9.0.json b/.semversioner/0.9.0.json new file mode 100644 index 00000000..7d4b0288 --- /dev/null +++ b/.semversioner/0.9.0.json @@ -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" +} \ No newline at end of file diff --git a/.semversioner/next-release/minor-20241203220552914273.json b/.semversioner/next-release/minor-20241203220552914273.json deleted file mode 100644 index 842496f9..00000000 --- a/.semversioner/next-release/minor-20241203220552914273.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "minor", - "description": "Refactor graph creation." -} diff --git a/.semversioner/next-release/patch-20241024210728482023.json b/.semversioner/next-release/patch-20241024210728482023.json deleted file mode 100644 index 48a498bb..00000000 --- a/.semversioner/next-release/patch-20241024210728482023.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "patch", - "description": "replace llm package with fnllm" -} diff --git a/.semversioner/next-release/patch-20241126205530514149.json b/.semversioner/next-release/patch-20241126205530514149.json deleted file mode 100644 index 23198b08..00000000 --- a/.semversioner/next-release/patch-20241126205530514149.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "patch", - "description": "Fix Global Search with dynamic Community selection bug" -} diff --git a/.semversioner/next-release/patch-20241126215650769602.json b/.semversioner/next-release/patch-20241126215650769602.json deleted file mode 100644 index bd384d0f..00000000 --- a/.semversioner/next-release/patch-20241126215650769602.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "patch", - "description": "Fix question gen." -} diff --git a/.semversioner/next-release/patch-20241127084633163555.json b/.semversioner/next-release/patch-20241127084633163555.json deleted file mode 100644 index 01699f7e..00000000 --- a/.semversioner/next-release/patch-20241127084633163555.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "patch", - "description": "miscellaneous code cleanup and minor changes for better alignment of style across the codebase." -} diff --git a/.semversioner/next-release/patch-20241129063524095980.json b/.semversioner/next-release/patch-20241129063524095980.json deleted file mode 100644 index 67f307ef..00000000 --- a/.semversioner/next-release/patch-20241129063524095980.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "patch", - "description": "update API and add a demonstration notebook" -} diff --git a/.semversioner/next-release/patch-20241130004740004072.json b/.semversioner/next-release/patch-20241130004740004072.json deleted file mode 100644 index b361849a..00000000 --- a/.semversioner/next-release/patch-20241130004740004072.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "patch", - "description": "Optimize Final Community Reports calculation and stabilize cache" -} diff --git a/.semversioner/next-release/patch-20241204203534799756.json b/.semversioner/next-release/patch-20241204203534799756.json deleted file mode 100644 index cd1a94ae..00000000 --- a/.semversioner/next-release/patch-20241204203534799756.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "patch", - "description": "replaced md5 hash with sha256" -} diff --git a/.semversioner/next-release/patch-20241204211013990211.json b/.semversioner/next-release/patch-20241204211013990211.json deleted file mode 100644 index d68befcd..00000000 --- a/.semversioner/next-release/patch-20241204211013990211.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "patch", - "description": "replaced md5 hash with sha512" -} diff --git a/.semversioner/next-release/patch-20241206190229362643.json b/.semversioner/next-release/patch-20241206190229362643.json deleted file mode 100644 index 437d90cb..00000000 --- a/.semversioner/next-release/patch-20241206190229362643.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "type": "patch", - "description": "Dependency updates" -} diff --git a/CHANGELOG.md b/CHANGELOG.md index bf77efff..450574ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/pyproject.toml b/pyproject.toml index 5f687fb7..7e0d09fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 ",