diff --git a/README.md b/README.md index 28e81e8..b5789cb 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,6 @@ Whenever an Azure Function App is recreated on demand (a so called "cold start") A javascript module bundler (webpack) is used to place all the modules in a single file. The Function `functions.json` files are then modified so this bundle is used rather than the separate modules files. Magic! -:construction: This project is experimental; use with caution and be prepared for breaking changes :construction: - ## How to run In the Function App directory: diff --git a/package.json b/package.json index ee4241e..f1a6221 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "azure-functions-pack", - "version": "0.4.1", + "version": "1.0.0", "description": "azure-functions-pack", "license": "MIT", "repository": "https://github.com/Azure/azure-functions-pack", diff --git a/src/main.ts b/src/main.ts index 2da2d0c..0ecd828 100644 --- a/src/main.ts +++ b/src/main.ts @@ -8,7 +8,7 @@ import { ConfigLoader, IFuncpackConfig } from "./utils"; async function runCli() { const p = program - .version("0.4.1") + .version("1.0.0") .option("-d, --debug", "Emits debug messages"); p.command("unpack ")