From de263499531ca0c6b12caa7bbf8b8c1c0fa0c2a1 Mon Sep 17 00:00:00 2001 From: Sergii Skorokhodov Date: Sun, 22 May 2022 13:49:45 +0000 Subject: [PATCH] chore(release): 2.0.0-beta.1 [skip ci] # [2.0.0-beta.1](https://github.com/syroegkin/swagger-markdown/compare/v1.4.4...v2.0.0-beta.1) (2022-05-22) ### Bug Fixes * **argparse:** fix argparse to respect the recent version ([2b71a91](https://github.com/syroegkin/swagger-markdown/commit/2b71a91814309d66b049e94d929e9a381bfed93a)) * fix export name ([180485a](https://github.com/syroegkin/swagger-markdown/commit/180485a9841a77852b44bc5bf41ffc9d00637580)) * include files with types ([391dbc7](https://github.com/syroegkin/swagger-markdown/commit/391dbc792be2a14498154d96ebb440638c6ad808)) * markdownlint is in use ([da46f0a](https://github.com/syroegkin/swagger-markdown/commit/da46f0a881a5fbb2bb81c3b09ef92673ff27159f)) * **references:** fix partialr dereference ([f1bcc7f](https://github.com/syroegkin/swagger-markdown/commit/f1bcc7f6cb2b65f9a3a335c15647409fa0f80883)) ### Features * add ts-node ([0b12ae3](https://github.com/syroegkin/swagger-markdown/commit/0b12ae37c5083af805369bcaf68cc1c60170c16a)) * contact -> typescript ([9426bc5](https://github.com/syroegkin/swagger-markdown/commit/9426bc5311cdfa2d23b135dbbbd7f41a03c224a8)) * make examples to typescript ([856f4d4](https://github.com/syroegkin/swagger-markdown/commit/856f4d4dbc0b259a2151bc012279e2eaae84fd37)) * **typescript:** turn it to ts ([8d51e84](https://github.com/syroegkin/swagger-markdown/commit/8d51e8433b253850b786f81fff14ae2a46659b3b)) * **version:** detect document version ([a1087a7](https://github.com/syroegkin/swagger-markdown/commit/a1087a7c825db76ea4df345b44058a2a84475fdf)) ### BREAKING CHANGES * **version:** It won't process document with newer syntax, it requires now to have the document version specified * **typescript:** start to rewrite code to ts so it will be maintainable --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 29 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec1ef60..be64c42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +# [2.0.0-beta.1](https://github.com/syroegkin/swagger-markdown/compare/v1.4.4...v2.0.0-beta.1) (2022-05-22) + + +### Bug Fixes + +* **argparse:** fix argparse to respect the recent version ([2b71a91](https://github.com/syroegkin/swagger-markdown/commit/2b71a91814309d66b049e94d929e9a381bfed93a)) +* fix export name ([180485a](https://github.com/syroegkin/swagger-markdown/commit/180485a9841a77852b44bc5bf41ffc9d00637580)) +* include files with types ([391dbc7](https://github.com/syroegkin/swagger-markdown/commit/391dbc792be2a14498154d96ebb440638c6ad808)) +* markdownlint is in use ([da46f0a](https://github.com/syroegkin/swagger-markdown/commit/da46f0a881a5fbb2bb81c3b09ef92673ff27159f)) +* **references:** fix partialr dereference ([f1bcc7f](https://github.com/syroegkin/swagger-markdown/commit/f1bcc7f6cb2b65f9a3a335c15647409fa0f80883)) + + +### Features + +* add ts-node ([0b12ae3](https://github.com/syroegkin/swagger-markdown/commit/0b12ae37c5083af805369bcaf68cc1c60170c16a)) +* contact -> typescript ([9426bc5](https://github.com/syroegkin/swagger-markdown/commit/9426bc5311cdfa2d23b135dbbbd7f41a03c224a8)) +* make examples to typescript ([856f4d4](https://github.com/syroegkin/swagger-markdown/commit/856f4d4dbc0b259a2151bc012279e2eaae84fd37)) +* **typescript:** turn it to ts ([8d51e84](https://github.com/syroegkin/swagger-markdown/commit/8d51e8433b253850b786f81fff14ae2a46659b3b)) +* **version:** detect document version ([a1087a7](https://github.com/syroegkin/swagger-markdown/commit/a1087a7c825db76ea4df345b44058a2a84475fdf)) + + +### BREAKING CHANGES + +* **version:** It won't process document with newer syntax, it requires now to have the document +version specified +* **typescript:** start to rewrite code to ts so it will be maintainable + ## [1.4.4](https://github.com/syroegkin/swagger-markdown/compare/v1.4.3...v1.4.4) (2021-11-07) diff --git a/package-lock.json b/package-lock.json index 8de01d3..f14520c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "swagger-markdown", - "version": "1.4.4", + "version": "2.0.0-beta.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 2167433..89df4ab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "swagger-markdown", - "version": "1.4.4", + "version": "2.0.0-beta.1", "description": "Create markdown API documentation from swagger file", "main": "index.js", "scripts": {