diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8faabdf..14f96e3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.2 +current_version = 1.0.3 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/llmdantic/__init__.py b/llmdantic/__init__.py index f79bc9e..f17f2b3 100644 --- a/llmdantic/__init__.py +++ b/llmdantic/__init__.py @@ -1,6 +1,6 @@ """LLMdantic is a Python package that provides structured interaction with LLMs.""" -__version__ = "1.0.2" +__version__ = "1.0.3" from .llmdantic import LLMdantic from .models import LLMdanticConfig, LLMdanticResult