Release version 0.9.5

This commit is contained in:
Bo Peng
2025-05-19 18:04:55 -05:00
parent f6dde4ba5f
commit a27578d04f
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "ai-marketplace-monitor"
version = "0.9.4"
version = "0.9.5"
description = "An AI-based tool for monitoring facebook marketplace"
authors = ["Bo Peng <ben.bob@gmail.com>"]
readme = "README.md"

View File

@@ -2,4 +2,4 @@
__author__ = """Bo Peng"""
__email__ = "ben.bob@gmail.com"
__version__ = "0.9.4"
__version__ = "0.9.5"

View File

@@ -13,7 +13,7 @@ from ai_marketplace_monitor.user import User
def test_version(version: str) -> None:
"""Sample pytest test function with the pytest fixture as an argument."""
assert version == "0.9.4"
assert version == "0.9.5"
def test_listing_cache(temp_cache: Cache, listing: Listing) -> None: