From 3e1731f1fee655e6dfeaca84097d6cec92bf9949 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Estev=C3=A3o=20Soares=20dos=20Santos?= Date: Thu, 21 Apr 2022 01:37:01 +0100 Subject: [PATCH] update changelog --- CHANGELOG.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5476ce..b015c2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +## [2.1.0](https://github.com/showdownjs/showdown/compare/2.0.0...2.1.0) (2022-04-21) + +* refactor(cli)!: Remove support for "extra options" and add -c flag, closes [#916](https://github.com/showdownjs/showdown/issues/916) + + +### Bug Fixes + +* **cli:** cli displays the correct version number ([8b48882](https://github.com/showdownjs/showdown/commit/8b48882)) + + +### BREAKING CHANGES + +* the CLI no longer accepts "extra options". Instead you should pass the `-c` flag. To update: + +before: +``` +showdown makehtml -i foo.md -o bar.html --strikethrough --emoji +``` + +after: +``` +showdown makehtml -i foo.md -o bar.html -c strikethrough -c emoji +``` + # [2.0.0](https://github.com/showdownjs/showdown/compare/1.9.1...2.0.0) (2022-02-15)