Skip to content

Commit

Permalink
chore: Bump version to 0.1.1 and update README for clarity
Browse files Browse the repository at this point in the history
- Updated project version in pyproject.toml and __init__.py to 0.1.1.
- Clarified README content by correcting typos and enhancing descriptions for blog post support and configuration instructions.
  • Loading branch information
Ryaang committed Dec 19, 2024
1 parent 2d776a3 commit 797542f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Genertate seo content for static blog post with AI, support blog framework like Hexo, Hugo, etc.

## Features
- Generate seo content (title, **description**, keywords) for blog in markdown format
- Generate seo content (title, **description**, keywords) for blog posts in markdown format
- Support blog framework like Hexo, Hugo, etc.
- Support multiple language
- Support multiple AI model like OpenAI, Qwen, Llama, etc. As long as the model provides openai-compatible API.
Expand Down Expand Up @@ -51,7 +51,7 @@ processor.process_markdown("path/to/post.md")

## Configuration

Download the [example config file](blog-ai-tool.toml) and modify it to your needs. Put the config file in your blog root directory, then run the command.
Download the [example config file](blog-ai-tool.toml) and modify it to your needs. Put the config file in your blog root directory (the same level as as your blog config file), then run the command.

## License

Expand Down
2 changes: 1 addition & 1 deletion blog-ai-tool/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from .blog_seo import HugoBlogProcessor, process_blog_directory
from .main import load_config

__version__ = "0.1.0"
__version__ = "0.1.1"
__all__ = ["HugoBlogProcessor", "process_blog_directory", "load_config"]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "blog-ai-tool"
version = "0.1.0"
version = "0.1.1"
description = "Generate seo content (title, description, keywords) for blog post with AI, support blog framework like Hexo, Hugo, etc."
readme = "README.md"
requires-python = ">=3.8"
Expand Down

0 comments on commit 797542f

Please sign in to comment.