diff --git a/CHANGELOG.md b/CHANGELOG.md index 0611c482..79216e65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 6.3.6 + +- bump dependencies + ## 6.3.5 - Add option to silence or redirect logs from parse #337 diff --git a/README.md b/README.md index 76e33845..5c3d6257 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,10 @@ const sms = new SitemapAndIndexStream({ // for it to write the sitemap urls to and the expected url where that sitemap will be hosted getSitemapStream: (i) => { const sitemapStream = new SitemapStream({ hostname: 'https://example.com' }); - const path = `./sitemap-${i}.xml`; + // if your server automatically serves sitemap.xml.gz when requesting sitemap.xml leave this line be + // otherwise you will need to add .gz here and remove it a couple lines below so that both the index + // and the actual file have a .gz extension + const path = `./sitemap-${i}.xml`; sitemapStream .pipe(createGzip()) // compress the output of the sitemap diff --git a/package-lock.json b/package-lock.json index 7f26d854..f2dcdf9e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "sitemap", - "version": "6.3.5", + "version": "6.3.6", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d053684d..3c413fef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sitemap", - "version": "6.3.5", + "version": "6.3.6", "description": "Sitemap-generating lib/cli", "keywords": [ "sitemap",