From 20066bbfdef01b293d3e8c04b4fd43271d4a55f9 Mon Sep 17 00:00:00 2001 From: Sondre Aasemoen Date: Tue, 31 Jan 2023 11:15:23 +0100 Subject: [PATCH] Release v0.3.0 --- CHANGELOG.md | 23 +++++++++++++++++++++++ package.json | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2e6bec..542b3b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,20 @@ +## v0.3.0 + +> 2023-01-31 + +## Summary + +Add configuration options to integration, bump Astro dependency to 2.0. + +### Commits + +- [[`bf612b4`](https://github.com/sondr3/astro-compressor)] Add configuration to README +- [[`230e092`](https://github.com/sondr3/astro-compressor)] Bump packages +- [[`3472d07`](https://github.com/sondr3/astro-compressor)] Allow enabling/disabling gzip and brotli compression +- [[`711a36f`](https://github.com/sondr3/astro-compressor)] Prefix url with `node:` + ## v0.2.2 + > 2022-12-29 ## Summary @@ -6,12 +22,14 @@ Fix paths for Windows. ### Commits + - [[`d9d04eb`](https://github.com/sondr3/astro-compressor)] Use fileUrlToPath to fix path on Windows - [[`cef27ed`](https://github.com/sondr3/astro-compressor)] Don't force height on badge - [[`2fbaa34`](https://github.com/sondr3/astro-compressor)] Use shields.io over badge.fury.io - [[`a0f7ba1`](https://github.com/sondr3/astro-compressor)] Update version badge ## v0.2.1 + > 2022-12-29 ## Summary @@ -19,10 +37,12 @@ Fix paths for Windows. Spelling fix and file name filtering change. ### Commits + - [[`fc44e2a`](https://github.com/sondr3/astro-compressor)] Use extname to get file extension - [[`341fd5c`](https://github.com/sondr3/astro-compressor)] Change m -> ms ## v0.2.0 + > 2022-12-29 ## Summary @@ -30,9 +50,11 @@ Spelling fix and file name filtering change. Removal of dependency over using the node standard library. ### Commits + - [[`f0840e5`](https://github.com/sondr3/astro-compressor)] Remove globby dependency, use stdlib ## v0.1.3 + > 2022-12-27 ## Summary @@ -40,6 +62,7 @@ Removal of dependency over using the node standard library. Update dependencies, fix some CI steps. ### Commits + - [[`28b0d90`](https://github.com/sondr3/astro-compressor)] Fix release CI step - [[`acc0b18`](https://github.com/sondr3/astro-compressor)] Update dependencies, fix formatting - [[`8a64bff`](https://github.com/sondr3/astro-compressor)] Add publish step on CI pipeline diff --git a/package.json b/package.json index 1aa31b8..dd0ce09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "astro-compressor", - "version": "0.2.2", + "version": "0.3.0", "description": "A gzip and brotli compressor for Astro", "type": "module", "main": "./dist/index.js",