diff --git a/CHANGELOG.md b/CHANGELOG.md index b2ceabb..f533a8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# ⚡ 0.1.6 + +* bump [lambda-rust](https://hub.docker.com/r/softprops/lambda-rust/) docker version to 0.1.0-rust-1.28.0, to make the new default Rust 1.28.0 (the latest release of Rust at this time) + # ⚡ 0.1.5 * ensure only a unique set of artifacts are collected for cleanup diff --git a/README.md b/README.md index 23204df..e25e8ed 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Install the plugin with npm ```bash -$ npm install serverless-rust@0.1.5 +$ npm install serverless-rust@0.1.6 ``` 💡 This serverless plugin assumes you are building Rustlang lambdas using the [lando](https://github.com/softprops/lando) or [crowbar](https://github.com/ilianaw/rust-crowbar) rustlang crates. diff --git a/index.js b/index.js index d09e53b..650ce00 100644 --- a/index.js +++ b/index.js @@ -23,7 +23,7 @@ class ServerlessPlugin { this.custom = Object.assign( { cargoFlags: "", - dockerTag: "0.1.0-rust-1.27.2" + dockerTag: "0.1.0-rust-1.28.0" }, this.serverless.service.custom && this.serverless.service.custom.rust || {} ); diff --git a/package.json b/package.json index 1979221..7773d78 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "serverless-rust", - "version": "0.1.5", + "version": "0.1.6", "description": "Serverless framework plugin for Rustlang applications", "main": "index.js", "scripts": {