From bf9b3a40d92c0953a3200e125b852a3b63960855 Mon Sep 17 00:00:00 2001 From: Brandon Faulkner <12897328+bfaulk96@users.noreply.github.com> Date: Mon, 21 Feb 2022 16:47:06 -0500 Subject: [PATCH] chore(release): 2.1.0 --- CHANGELOG.md | 12 ++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50aa2af..bbde07f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [2.1.0](https://github.com/SamWSoftware/serverless-auto-swagger/compare/v2.0.0...v2.1.0) (2022-02-21) + + +### Features + +* add option to use REST API for swagger lambdas ([#44](https://github.com/SamWSoftware/serverless-auto-swagger/issues/44)) ([e034ab3](https://github.com/SamWSoftware/serverless-auto-swagger/commit/e034ab39dc973bed8a47731dcb58e560dc9fe404)) + * `apiType: 'http' | 'httpApi'` – defaults to `httpApi` if not specified + +### Bug Fixes + +* use unique operationId per function path ([#43](https://github.com/SamWSoftware/serverless-auto-swagger/issues/43)) ([d28e6af](https://github.com/SamWSoftware/serverless-auto-swagger/commit/d28e6afc4cf16048c4ba91939ce300e6d89dbff5)) + ## [2.0.0](https://github.com/SamWSoftware/serverless-auto-swagger/compare/v1.8.0...v2.0.0) (2022-02-21) diff --git a/package-lock.json b/package-lock.json index bfbaf1a..54dddce 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "serverless-auto-swagger", - "version": "2.0.0", + "version": "2.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "serverless-auto-swagger", - "version": "2.0.0", + "version": "2.1.0", "license": "MIT", "dependencies": { "fs-extra": "^10.0.0", diff --git a/package.json b/package.json index 0430e2f..710c795 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "serverless-auto-swagger", - "version": "2.0.0", + "version": "2.1.0", "description": "Automatically generate a swagger file from your Serverless Framework config file", "main": "dist/index.js", "homepage": "https://github.com/SamWSoftware/serverless-auto-swagger",