diff options
author | 2023-12-05 05:39:16 -0800 | |
---|---|---|
committer | 2023-12-05 09:39:16 -0400 | |
commit | 5f13e7e0dcf256fc5c5b0ac7ca10c02e44f728b3 (patch) | |
tree | 89683f087e91a8b5c03bf9033c08687f0f1308e2 /packages/upgrade | |
parent | 82586f32f467c4ddaf581af97e48bace8da2bb6a (diff) | |
download | astro-5f13e7e0dcf256fc5c5b0ac7ca10c02e44f728b3.tar.gz astro-5f13e7e0dcf256fc5c5b0ac7ca10c02e44f728b3.tar.zst astro-5f13e7e0dcf256fc5c5b0ac7ca10c02e44f728b3.zip |
[ci] release (#9307)create-astro@4.5.2astro@4.0.0@astrojs/vue@4.0.0@astrojs/vercel@6.0.0@astrojs/upgrade@0.2.0@astrojs/svelte@5.0.0@astrojs/rss@4.0.0@astrojs/react@3.0.7@astrojs/node@7.0.0@astrojs/mdx@2.0.0@astrojs/markdown-remark@4.0.0@astrojs/markdoc@0.8.0
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Diffstat (limited to 'packages/upgrade')
-rw-r--r-- | packages/upgrade/CHANGELOG.md | 28 | ||||
-rw-r--r-- | packages/upgrade/package.json | 2 |
2 files changed, 29 insertions, 1 deletions
diff --git a/packages/upgrade/CHANGELOG.md b/packages/upgrade/CHANGELOG.md index 969c359b6..8ea9a0f39 100644 --- a/packages/upgrade/CHANGELOG.md +++ b/packages/upgrade/CHANGELOG.md @@ -1,5 +1,33 @@ # @astrojs/upgrade +## 0.2.0 + +### Minor Changes + +- [#9118](https://github.com/withastro/astro/pull/9118) [`000e8f465`](https://github.com/withastro/astro/commit/000e8f4654cae9982e21e0a858366c4844139db6) Thanks [@Princesseuh](https://github.com/Princesseuh)! - Initial release! + + `@astrojs/upgrade` is an automated command-line tool for upgrading Astro and your official Astro integrations together. + + Inside of your existing `astro` project, run the following command to install the `latest` version of your integrations. + + **With NPM:** + + ```bash + npx @astrojs/upgrade + ``` + + **With Yarn:** + + ```bash + yarn dlx @astrojs/upgrade + ``` + + **With PNPM:** + + ```bash + pnpm dlx @astrojs/upgrade + ``` + ## 0.1.0-beta.0 ### Minor Changes diff --git a/packages/upgrade/package.json b/packages/upgrade/package.json index 69fd31694..1f5eb5f86 100644 --- a/packages/upgrade/package.json +++ b/packages/upgrade/package.json @@ -1,6 +1,6 @@ { "name": "@astrojs/upgrade", - "version": "0.2.0-beta.0", + "version": "0.2.0", "type": "module", "author": "withastro", "license": "MIT", |