diff --git a/package-lock.json b/package-lock.json index 5332c2e..29967f9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@workos-inc/authkit-nextjs", - "version": "0.6.1", + "version": "0.7.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@workos-inc/authkit-nextjs", - "version": "0.6.1", + "version": "0.7.0", "license": "MIT", "dependencies": { "@workos-inc/node": "^7.12.0", diff --git a/package.json b/package.json index 9c3c83c..7305d7d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@workos-inc/authkit-nextjs", - "version": "0.6.2", + "version": "0.7.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 a6d0452..e3d677f 100644 --- a/src/workos.ts +++ b/src/workos.ts @@ -1,11 +1,16 @@ 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.7.0'; const options = { apiHostname: WORKOS_API_HOSTNAME, https: WORKOS_API_HTTPS ? WORKOS_API_HTTPS === 'true' : true, port: WORKOS_API_PORT ? parseInt(WORKOS_API_PORT) : undefined, + appInfo: { + name: 'authkit/nextjs', + version: VERSION, + }, }; // Initialize the WorkOS client