summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/pre.json1
-rw-r--r--packages/integrations/netlify/CHANGELOG.md8
-rw-r--r--packages/integrations/netlify/package.json2
3 files changed, 9 insertions, 2 deletions
diff --git a/.changeset/pre.json b/.changeset/pre.json
index cba2be872..eddb1919e 100644
--- a/.changeset/pre.json
+++ b/.changeset/pre.json
@@ -60,6 +60,7 @@
"astro-scripts": "0.0.2"
},
"changesets": [
+ "angry-suits-thank",
"shiny-rice-worry",
"sour-laws-raise",
"stale-walls-whisper",
diff --git a/packages/integrations/netlify/CHANGELOG.md b/packages/integrations/netlify/CHANGELOG.md
index 91d885de1..7529d000d 100644
--- a/packages/integrations/netlify/CHANGELOG.md
+++ b/packages/integrations/netlify/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/netlify
+## 0.1.1-beta.0
+
+### Patch Changes
+
+- [#2996](https://github.com/withastro/astro/pull/2996) [`77aa3a5c`](https://github.com/withastro/astro/commit/77aa3a5c504c5f51ed1c4d2c8abc4997397deec2) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Add human-readable error when a site is not provided in your astro.config
+
## 0.1.0
### Minor Changes
@@ -19,6 +25,6 @@
import netlify from '@astrojs/netlify/functions';
export default defineConfig({
- adapter: netlify(),
+ adapter: netlify(),
});
```
diff --git a/packages/integrations/netlify/package.json b/packages/integrations/netlify/package.json
index 80b0565ad..4402076c1 100644
--- a/packages/integrations/netlify/package.json
+++ b/packages/integrations/netlify/package.json
@@ -1,7 +1,7 @@
{
"name": "@astrojs/netlify",
"description": "Deploy your site to Netlify",
- "version": "0.1.0",
+ "version": "0.1.1-beta.0",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",