Skip to content

Commit a070447

Browse files
authored
release: 0.9.3 (#916)
1 parent 5276a97 commit a070447

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

docs/.vitepress/routes/navbar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const routes: DefaultTheme.Config['nav'] = [
4444
],
4545
},
4646
{
47-
text: '0.9.2',
47+
text: '0.9.3',
4848
items: [
4949
{
5050
text: '0.8.2',

docs/.vitepress/theme/components/Layout.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import Banner from './Banner.vue'
66
const { Layout } = DefaultTheme
77
88
// Banner Configuration
9+
const isBannerEnabled = false
910
const bannerConfig = {
1011
// Leave text empty to disable the banner
1112
text: '🚀 NuxtAuth v0.9.0 has been released!',
@@ -22,7 +23,7 @@ const bannerConfig = {
2223
<GithubStarsButton owner="sidebase" repo="nuxt-auth" />
2324
</template>
2425

25-
<template #home-hero-before>
26+
<template v-if="isBannerEnabled" #home-hero-before>
2627
<Banner v-bind="bannerConfig" />
2728
</template>
2829
</Layout>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sidebase/nuxt-auth",
3-
"version": "0.9.2",
3+
"version": "0.9.3",
44
"license": "MIT",
55
"type": "module",
66
"description": "Authentication built for Nuxt 3! Easily add authentication via OAuth providers, credentials or Email Magic URLs!",

0 commit comments

Comments
 (0)