diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/astro/CHANGELOG.md | 8 | ||||
-rw-r--r-- | packages/astro/package.json | 4 | ||||
-rw-r--r-- | packages/markdown-support/CHANGELOG.md | 6 | ||||
-rw-r--r-- | packages/markdown-support/package.json | 2 |
4 files changed, 17 insertions, 3 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index f12430a6f..551c88b8d 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,13 @@ # astro +## 0.19.1 + +### Patch Changes + +- ece0953a: Fix CSS :global() selector bug +- Updated dependencies [a421329f] + - @astrojs/markdown-support@0.2.4 + ## 0.19.0 ### Minor Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index aced2e9e8..215e20cd0 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.19.0", + "version": "0.19.1", "author": "Skypack", "license": "MIT", "type": "module", @@ -43,7 +43,7 @@ "test": "uvu test -i fixtures -i benchmark -i test-utils.js" }, "dependencies": { - "@astrojs/markdown-support": "0.2.3", + "@astrojs/markdown-support": "0.2.4", "@astrojs/parser": "0.18.6", "@astrojs/prism": "0.2.2", "@astrojs/renderer-preact": "0.2.1", diff --git a/packages/markdown-support/CHANGELOG.md b/packages/markdown-support/CHANGELOG.md index 746b537cc..b8547f962 100644 --- a/packages/markdown-support/CHANGELOG.md +++ b/packages/markdown-support/CHANGELOG.md @@ -1,5 +1,11 @@ # @astrojs/markdown-support +## 0.2.4 + +### Patch Changes + +- a421329f: Fix the left-brace issue + ## 0.2.3 ### Patch Changes diff --git a/packages/markdown-support/package.json b/packages/markdown-support/package.json index 19e1526c7..b927c2a9d 100644 --- a/packages/markdown-support/package.json +++ b/packages/markdown-support/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/markdown-support", - "version": "0.2.3", + "version": "0.2.4", "main": "./dist/index.js", "type": "module", "repository": { |