Skip to content

Commit b595066

Browse files
authored
Merge pull request SylphAI-Inc#106 from SylphAI-Inc/li
add change log for 0.0.0-beta.1
2 parents d0db80f + 159b949 commit b595066

File tree

4 files changed

+29
-17
lines changed

4 files changed

+29
-17
lines changed

.github/workflows/python-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
python-version: ['3.10', '3.11', '3.12']
14+
python-version: ['3.9', '3.10', '3.11', '3.12']
1515

1616
steps:
1717
- uses: actions/checkout@v3 # Updated to the latest version

lightrag/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## [0.0.0-beta.1] - 2024-07-10
2+
3+
### Added
4+
- `DataClass`: add `__type_var_map__` in `data class schema` as the necessary step to support `Generic` in data class.
5+
- Support Python `3.9`.
6+
7+
### Fixed
8+
- `ReAct` agent is fixed to be working with updates on the json output parser.
9+
- `Add` error handling for using Lazy Import classes the wrong way, such as subclass.
10+
11+
12+
113
## [0.0.0-alpha.16] - 2024-07-08
214

315
### Fixed

lightrag/poetry.lock

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lightrag/pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tool.poetry]
22
name = "lightrag"
33

4-
version = "0.0.0-alpha.16"
5-
description = "The 'PyTorch' library for LLM applications."
4+
version = "0.0.0-beta.1"
5+
description = "The Lightning Library for LLM Applications."
66
authors = ["Li Yin <[email protected]>"]
77
readme = "README.md"
88
repository = "https://github.com/SylphAI-Inc/LightRAG"
@@ -32,7 +32,7 @@ packages = [{ include = "lightrag", from = "." }]
3232

3333

3434
[tool.poetry.dependencies]
35-
python = ">=3.10, <4.0"
35+
python = ">=3.9, <4.0"
3636

3737
python-dotenv = "^1.0.1"
3838
backoff = "^2.2.1"

0 commit comments

Comments
 (0)