Skip to content

Commit ffbbcbe

Browse files
authored
[version] bump version to v0.0.1 (#26)
* v0.0.1 * changelog
1 parent 70600ec commit ffbbcbe

File tree

5 files changed

+694
-686
lines changed

5 files changed

+694
-686
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
1010

1111
...
1212

13+
## [0.0.1] - 2025-07-01
14+
1315
### Added
1416

1517
- Add `AsyncSimpleFunctionTool` (#20)

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ dev = [
2121

2222
[project]
2323
name = "llm-agents-from-scratch"
24-
version = "0.1.0"
24+
version = "0.0.1"
2525
description = "Build an LLM agent, equipped with MCP, from scratch."
26+
license = "Apache-2.0"
2627
readme = "README.md"
2728
authors = [
2829
{name = "Andrei Fajardo", email = "[email protected]"}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
"""Build an LLM agent from scratch."""
22

3+
from llm_agents_from_scratch._version import VERSION
4+
35
# Disable the F403 warning for wildcard imports
46
# ruff: noqa: F403, F401
57
from .core import *
68
from .core import __all__ as _core_all
79

10+
__version__ = VERSION
11+
12+
813
__all__ = sorted(_core_all) # noqa: PLE0605
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VERSION = "0.0.1"

0 commit comments

Comments
 (0)