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",