From cdfcad23658da6288de05c33a3589324c51efff9 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Wed, 29 Jan 2025 14:58:19 -0600 Subject: [PATCH] v1.3.0 (#195) --- package-lock.json | 4 ++-- package.json | 2 +- src/workos.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index d052dbd..86ee750 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@workos-inc/authkit-nextjs", - "version": "1.1.0", + "version": "1.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@workos-inc/authkit-nextjs", - "version": "1.1.0", + "version": "1.3.0", "license": "MIT", "dependencies": { "@workos-inc/node": "^7.37.1", diff --git a/package.json b/package.json index 27f3154..80db6e7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@workos-inc/authkit-nextjs", - "version": "1.2.0", + "version": "1.3.0", "description": "Authentication and session helpers for using WorkOS & AuthKit with Next.js", "sideEffects": false, "type": "module", diff --git a/src/workos.ts b/src/workos.ts index c719a51..84f370b 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_KEY, WORKOS_API_HTTPS, WORKOS_API_PORT } from './env-variables.js'; -export const VERSION = '1.2.0'; +export const VERSION = '1.3.0'; const options = { apiHostname: WORKOS_API_HOSTNAME,