diff --git a/README.md b/README.md index 05e2aa871..24a8ecb8a 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ individually, resulting in smaller Lambda packages that contain only the code an dependencies needed to run the function. This allows the plugin to fully utilize WebPack's [Tree-Shaking][link-webpack-tree] optimization. -## New in V3 +## Recent improvements * Support for individual packaging and optimization * Integrate with `serverless invoke local` (including watch mode) @@ -387,6 +387,9 @@ Plugin commands are supported by the following providers. ⁇ indicates that com ## Release Notes +* 3.1.2 + * Fix issue where dependencies with dots in their names would not be installed [#251][link-251] + * 3.1.1 * Fix issue where locked dependencies (package-lock.json) were ignored [#245][link-245] @@ -504,3 +507,5 @@ Plugin commands are supported by the following providers. ⁇ indicates that com [link-234]: https://github.com/serverless-heaven/serverless-webpack/pull/234 [link-245]: https://github.com/serverless-heaven/serverless-webpack/issues/245 + +[link-251]: https://github.com/serverless-heaven/serverless-webpack/issues/251 diff --git a/package-lock.json b/package-lock.json index b0fefab0c..eb6818305 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "serverless-webpack", - "version": "3.1.1", + "version": "3.1.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index de923533f..a2a4e3a4f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "serverless-webpack", - "version": "3.1.1", + "version": "3.1.2", "description": "Serverless plugin to bundle your javascript with Webpack", "main": "index.js", "author": "Nicola Peduzzi (http://elastic-coders.com)",