Skip to content

Commit 64009ee

Browse files
committed
Version to v3.0.0-rc.0
1 parent a89c744 commit 64009ee

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "rigging"
3-
version = "2.3.0"
3+
version = "3.0.0-rc.0"
44
description = "LLM Interaction Framework"
55
authors = ["Nick Landers <[email protected]>"]
66
license = "MIT"

rigging/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
from rigging.prompt import Ctx, Prompt, prompt
3131
from rigging.tool import Tool, mcp, robopages, tool
3232
from rigging.util import await_
33+
from rigging.version import VERSION
3334

34-
# TODO: Migrate to importlib for this
35-
__version__ = "2.3.0"
35+
__version__ = VERSION
3636

3737
__all__ = [
3838
"get_generator",

rigging/version.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import importlib_metadata
2+
3+
VERSION = importlib_metadata.version("rigging")

0 commit comments

Comments
 (0)