From 23123611266e837da49b33583cc68758ac5f3c86 Mon Sep 17 00:00:00 2001 From: abetomo Date: Mon, 1 Sep 2025 22:23:10 +0900 Subject: [PATCH] Bump version 2.0.0-alpha.0 GH-641 We haven't migrated all the features from SDK v2, but we've migrated the minimum required features to SDK v3, so we're releasing it. Publish using the following command: ``` npm publish --tag next ``` --- package-lock.json | 4 ++-- package.json | 2 +- test/main.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index b312c3f..6c78f05 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "node-lambda", - "version": "1.3.0", + "version": "2.0.0-alpha.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "node-lambda", - "version": "1.3.0", + "version": "2.0.0-alpha.0", "license": "BSD-2-Clause", "dependencies": { "@aws-sdk/client-cloudwatch-events": "^3.797.0", diff --git a/package.json b/package.json index eb1b176..8b5e4f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-lambda", - "version": "1.3.0", + "version": "2.0.0-alpha.0", "description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.", "main": "lib/main.js", "directories": { diff --git a/test/main.js b/test/main.js index 2cd3d14..8fcb2cc 100644 --- a/test/main.js +++ b/test/main.js @@ -192,7 +192,7 @@ describe('lib/main', function () { }) it('version should be set', () => { - assert.equal(lambda.version, '1.3.0') + assert.equal(lambda.version, '2.0.0-alpha.0') }) describe('_codeDirectory', () => {