From 90d74d5f74c253c07ccdc39a0dea28e740604962 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Jun 2025 17:02:07 +0000 Subject: [PATCH] Version Packages --- .changeset/fix-duplicate-md-extension.md | 10 ---------- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- 3 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 .changeset/fix-duplicate-md-extension.md diff --git a/.changeset/fix-duplicate-md-extension.md b/.changeset/fix-duplicate-md-extension.md deleted file mode 100644 index 98822cf..0000000 --- a/.changeset/fix-duplicate-md-extension.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"fcrawl": patch ---- - -Fix duplicate .md extension issue in URL-to-file-path transformation - -- Prevent duplicate .md extensions when URLs already contain .md -- URLs like `https://example.com/README.md` now correctly map to `./crawls/example.com/README.md` instead of `./crawls/example.com/README.md.md` -- Affects both markdown link transformation and bare URL handling -- Maintains backward compatibility for URLs without .md extensions \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index aa77a21..d320b12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # fcrawl +## 0.3.3 + +### Patch Changes + +- [`75dc083`](https://github.com/0xBigBoss/firecrawl-cli/commit/75dc0831e73978553308ec132824ea15d3732bf7) Thanks [@0xBigBoss](https://github.com/0xBigBoss)! - Fix duplicate .md extension issue in URL-to-file-path transformation + + - Prevent duplicate .md extensions when URLs already contain .md + - URLs like `https://example.com/README.md` now correctly map to `./crawls/example.com/README.md` instead of `./crawls/example.com/README.md.md` + - Affects both markdown link transformation and bare URL handling + - Maintains backward compatibility for URLs without .md extensions + ## 0.3.2 ### Patch Changes diff --git a/package.json b/package.json index 4320bb7..0b11e4a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fcrawl", - "version": "0.3.2", + "version": "0.3.3", "description": "Web crawler using Firecrawl API that saves pages as local Markdown files", "module": "index.ts", "type": "module",