From 2e1d3e6dac09fdfba67ef20b6c2fbc4ccd5088f2 Mon Sep 17 00:00:00 2001 From: "Aivin V. Solatorio" Date: Mon, 19 Jun 2023 00:31:43 -0400 Subject: [PATCH] Bump version for v0.0.3 release (#17) Signed-off-by: Aivin V. Solatorio --- llm4data/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llm4data/__init__.py b/llm4data/__init__.py index 3537095..505b95a 100644 --- a/llm4data/__init__.py +++ b/llm4data/__init__.py @@ -7,7 +7,7 @@ # Do this before importing any other modules. dotenv.load_dotenv() -__version__ = "0.0.2" +__version__ = "0.0.3" indicator2name = dict( wdi=json.load((Path(__file__).parent / "wdi2name.json").open("r")) diff --git a/pyproject.toml b/pyproject.toml index 85ea747..0c17c6e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "llm4data" -version = "0.0.2" +version = "0.0.3" description = "LLM4Data is a Python library designed to facilitate the application of large language models (LLMs) and artificial intelligence for development data and knowledge discovery." authors = ["Aivin V. Solatorio "] readme = "README.md"