Skip to content

Commit c800da4

Browse files
committed
release: 0.0.0 → 0.1.0
1 parent 792d4e6 commit c800da4

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## v0.1.0 (2024-12-28)
2+
3+
### Feat
4+
5+
- add CLI interface
6+
- implement md to json conversion
7+
- implement json_to_md conversion
8+
- implement pydantic types for validation
9+
- add src for chat-completion-md

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "chat-completion-md"
3-
version = "0.0.0"
3+
version = "0.1.0"
44
description = "Convert OpenAI chat completion request to markdown and vice versa"
55
readme = "README.md"
66
authors = [{ name = "S1M0N38", email = "bertolottosimone@gmail.com" }]

src/chat_completion_md/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .api import json_to_md, md_to_json
22

33
__all__ = ["json_to_md", "md_to_json"]
4-
__version__ = "0.0.0"
4+
__version__ = "0.1.0"

0 commit comments

Comments
 (0)