diff --git a/llm_github/core.py b/llm_github/core.py
index efeddb7..a88f6ea 100644
--- a/llm_github/core.py
+++ b/llm_github/core.py
@@ -358,3 +358,9 @@ def process_discussions(discussions: List[Dict[str, Any]], keys_to_remove: List[
         final_discussion = remove_keys_from_dict(cleaned_discussion, keys_to_remove)
         processed_discussions.append(final_discussion)
     return processed_discussions
+
+
+def force_release() -> None:
+    """Force a release of the package to PyPI."""
+    # This function is used for demonstration purposes and should not be used in production
+    pass
diff --git a/pyproject.toml b/pyproject.toml
index a63dda9..5668710 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "llm_github"
-version = "0.0.1"
+version = "0.0.2"
 description = "Tools for extracting knowledge from GitHub issues, PR comments, etc."
 authors = ["Mark Andrew Miller <mamillerpa@gmail.com>"]
 repository = "https://github.com/turbomam/llm-github"