diff --git a/CHANGELOG.md b/CHANGELOG.md index d4504e40..793353b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ # Changelog -## TODO: -- User agent: "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.101.76 Safari/537.36", \ No newline at end of file +## [0.2.4] - 2024-06-17 +### Fixed +- Fix issue #22: Use MD5 hash for caching HTML files to handle long URLs \ No newline at end of file diff --git a/README.md b/README.md index 2e555970..ad070606 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,9 @@ Crawl4AI has one clear task: to simplify crawling and extract useful information ## Recent Changes +### v0.2.34 +- 🐞 Resolve the issue with the long url. (Issue #22) + ### v0.2.3 - 🎨 Extract and return all media tags (Images, Audio, and Video). Check `result.media` - 🔗 Extrat all external and internal links. Check `result.links` diff --git a/pages/index.html b/pages/index.html index 43d4394a..fa352090 100644 --- a/pages/index.html +++ b/pages/index.html @@ -25,7 +25,7 @@
-

🔥🕷️ Crawl4AI: Web Data for your Thoughts v0.2.3

+

🔥🕷️ Crawl4AI: Web Data for your Thoughts v0.2.4

📊 Total Website Processed diff --git a/setup.py b/setup.py index 8fb10997..168dfac6 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ class CustomInstallCommand(install): setup( name="Crawl4AI", - version="0.2.3", + version="0.2.4", description="🔥🕷️ Crawl4AI: Open-source LLM Friendly Web Crawler & Scrapper", long_description=open("README.md").read(), long_description_content_type="text/markdown",