From 0a50d4e8d00831fa06a13b3b3ca3c69a7a3cf06c Mon Sep 17 00:00:00 2001 From: adamjmcgrath Date: Fri, 12 Jun 2020 14:55:25 +0100 Subject: [PATCH] Release 2.4.0 --- Changelog.md | 5 +++++ package.json | 5 ++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Changelog.md b/Changelog.md index 9f8e183..1dea700 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,8 @@ +# 2.4.0 + +- Added support for a custom user key (`customUserKey`) +- Added TypeScript definitions + # 2.3.0 - Added support for a custom scope key (`customScopeKey`) diff --git a/package.json b/package.json index af94ba0..a6c1e93 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,15 @@ { "name": "express-jwt-authz", - "version": "2.3.0", + "version": "2.4.0", "description": "Validate a JWTs scope to authorize access to an endpoint", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "mocha" }, + "files": [ + "lib" + ], "repository": { "type": "git", "url": "git+https://github.com/auth0/express-jwt-authz.git"