Skip to content

Commit 828ebe7

Browse files
committed
Correcting Release Version to v0.0.2b1
1 parent e356637 commit 828ebe7

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "codemd"
7-
version = "0.0.2b"
7+
version = "0.0.2b1"
88
authors = [
99
{ name = "Peilin Yu", email = "peilin_yu@brown.edu" },
1010
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="codemd",
13-
version="0.0.2b",
13+
version="0.0.2b1",
1414
author="Peilin Yu",
1515
author_email="peilin_yu@brown.edu",
1616
description="Transform code repositories into markdown-formatted strings ready for LLM prompting",

src/codemd/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from .cli import main
22
from .scanner import CodeScanner
33

4-
__version__ = "0.0.2b"
4+
__version__ = "0.0.2b1"
55
__all__ = ["CodeScanner", "main"]

src/codemd/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ def format_token_info(token_count: int, model_name: str) -> str:
215215

216216
def main() -> int:
217217
print(BANNER)
218-
print("Version 0.0.2b")
218+
print("Version 0.0.2b1")
219219
print("Transform your code into LLM-ready prompts and automatically copy them to your clipboard!\n")
220220

221221
try:

0 commit comments

Comments
 (0)