From db89c94a5b0fcfab60b623f3d9d159f857a4e609 Mon Sep 17 00:00:00 2001 From: Dan Dorman Date: Wed, 27 Nov 2024 09:15:55 -0700 Subject: [PATCH] Bump version to v0.6.0 (#34) --- package.json | 2 +- src/workos.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fbae3ea..b05c1b6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@workos-inc/authkit-remix", - "version": "0.5.0", + "version": "0.6.0", "description": "Authentication and session helpers for using WorkOS & AuthKit with Remix", "sideEffects": false, "type": "commonjs", diff --git a/src/workos.ts b/src/workos.ts index 0ac52f7..f7757af 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'; -const VERSION = '0.5.0'; +const VERSION = '0.6.0'; const options = { apiHostname: WORKOS_API_HOSTNAME,