From e6f86fdd19dc94b06213e75ff816fdceb4aa4087 Mon Sep 17 00:00:00 2001 From: Paul Asjes Date: Wed, 7 Aug 2024 11:28:30 -0400 Subject: [PATCH] Bump version (#76) --- package.json | 2 +- src/workos.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 728b6d3..60c6e63 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@workos-inc/authkit-nextjs", - "version": "0.8.2", + "version": "0.9.0", "description": "Authentication and session helpers for using WorkOS & AuthKit with Next.js", "sideEffects": false, "type": "commonjs", diff --git a/src/workos.ts b/src/workos.ts index 8913be8..4573e12 100644 --- a/src/workos.ts +++ b/src/workos.ts @@ -1,7 +1,7 @@ import { WorkOS } from '@workos-inc/node'; import { WORKOS_API_HOSTNAME, WORKOS_API_HTTPS, WORKOS_API_KEY, WORKOS_API_PORT } from './env-variables.js'; -export const VERSION = '0.8.2'; +export const VERSION = '0.9.0'; const options = { apiHostname: WORKOS_API_HOSTNAME,