Skip to content

Commit

Permalink
Prepare to be merged into master for release
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjmcgrath committed Sep 14, 2023
1 parent 54a72c9 commit 8047b56
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -50,4 +50,4 @@ workflows:
filters:
branches:
only:
- beta
- master
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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 <strong>Beta</strong>. 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)
Expand All @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '4.0.0-beta.10';
export const version = '3.7.1';

0 comments on commit 8047b56

Please sign in to comment.