diff --git a/.circleci/config.yml b/.circleci/config.yml index 0242d1b7b..70b356178 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -41,7 +41,7 @@ workflows: parameters: node-version: ["18.17", "20.3"] - ship/node-publish: - publish-command: npm run build && npm publish --tag beta + publish-command: npm run build && npm publish requires: - build-and-test context: @@ -50,4 +50,4 @@ workflows: filters: branches: only: - - beta + - master diff --git a/README.md b/README.md index e7b0ea0a7..11e98f2cf 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,5 @@ ![Node.js client library for Auth0](https://cdn.auth0.com/website/sdks/banner/node-auth0-banner.png) -> ⚠️ Please be aware that v4 is currently in Beta. Whilst we encourage you to test the update within your applications, we do no recommend using this version in production yet. - ![Release](https://img.shields.io/npm/v/auth0) [![Codecov](https://img.shields.io/codecov/c/github/auth0/node-auth0)](https://codecov.io/gh/auth0/node-auth0) ![Downloads](https://img.shields.io/npm/dw/auth0) @@ -27,7 +25,7 @@ This library supports the following tooling versions: Using [npm](https://npmjs.org) in your project directory run the following command: ```bash -npm install auth0@beta +npm install auth0 ``` ### Configure the SDK @@ -79,8 +77,8 @@ See [more examples](./EXAMPLES.md#management-client). ## API Reference -- [AuthenticationClient](https://auth0.github.io/node-auth0/beta/classes/auth.AuthenticationClient.html) -- [ManagementClient](https://auth0.github.io/node-auth0/beta/classes/management.ManagementClient.html) +- [AuthenticationClient](https://auth0.github.io/node-auth0/classes/auth.AuthenticationClient.html) +- [ManagementClient](https://auth0.github.io/node-auth0/classes/management.ManagementClient.html) ## Feedback diff --git a/package-lock.json b/package-lock.json index 4cfc03911..376186630 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "auth0", - "version": "4.0.0-beta.10", + "version": "3.7.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index ea42f6752..c1d579b21 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auth0", - "version": "4.0.0-beta.10", + "version": "3.7.1", "description": "SDK for Auth0 API v2", "main": "dist/cjs/index.js", "types": "dist/cjs/index.d.ts", diff --git a/src/version.ts b/src/version.ts index 7760550cb..758e8aa27 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const version = '4.0.0-beta.10'; +export const version = '3.7.1';