Skip to content

Commit 59b2450

Browse files
authored
docs: Remove refs to beta ahead of 2.0.0 release (#1200)
To be merged just before #1195, so that the docs in the 2.0.0 release do not tell you to install from the beta channel.
1 parent 0d55ff1 commit 59b2450

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ If you're coming from v1 and updating to v2, check out the [v2 migration guide](
1313
Install via npm or Yarn:
1414

1515
```bash
16-
npm i @comicrelief/lambda-wrapper@beta
16+
npm i @comicrelief/lambda-wrapper
1717
# or
18-
yarn add @comicrelief/lambda-wrapper@beta
18+
yarn add @comicrelief/lambda-wrapper
1919
```
2020

2121
You can then wrap your Lambda handler functions like this:

src/core/DependencyInjection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export default class DependencyInjection<TConfig extends LambdaWrapperConfig = a
5151
+ "bundler may be minifying your code. You'll need to disable this "
5252
+ 'for Lambda Wrapper to work correctly. Please refer to the Notes '
5353
+ 'section of the Lambda Wrapper readme:\n\n'
54-
+ ' https://github.com/comicrelief/lambda-wrapper/tree/beta#notes'
54+
+ ' https://github.com/comicrelief/lambda-wrapper#notes'
5555
: 'Please ensure that all dependency classes have a unique name.';
5656

5757
throw new Error(

0 commit comments

Comments
 (0)