From ea4be824926d0d0751a764e6110d97db64de2d6c Mon Sep 17 00:00:00 2001 From: takahashim Date: Sat, 29 Oct 2022 13:07:58 +0900 Subject: [PATCH 1/2] Update NEWS --- NEWS.ja.md | 18 ++++++++++++++++++ NEWS.md | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/NEWS.ja.md b/NEWS.ja.md index 4765a7e19..33ba90809 100644 --- a/NEWS.ja.md +++ b/NEWS.ja.md @@ -1,3 +1,21 @@ +# Version 5.6.0 +## 新機能 +* IDGXMLBuilder: `//texequation` と `@` で `imgmath` math_formatに対応しました ([#1829]) +* LATEXBuilder: `@`用のマクロとして`reviewicon`マクロを追加し、 `reviewincludegraphics`マクロの代わりに使うようにしました ([#1838]) +* ルビ文字列の前後のスペースを削除するようにしました ([#1839]) + +## 非互換の変更 +* LATEXBuilder: 囲み記事の見出しとして `■メモ` の代わりに `MEMO`, `NOTICE`, `CAUTION` 等を使うようにしました。以前の見出しを使う場合は`locale.yml`に記載してください ([#1856]) + +## その他 +* ドキュメント `format.md` と `format.ja.md` を更新しました ([#1860]) + +[#1829]: https://github.com/kmuto/review/pull/1829 +[#1838]: https://github.com/kmuto/review/pull/1838 +[#1839]: https://github.com/kmuto/review/pull/1839 +[#1856]: https://github.com/kmuto/review/pull/1856 +[#1860]: https://github.com/kmuto/review/pull/1860 + # Version 5.5.0 ## 新機能 * 節や項を参照するインライン命令として、 `@` , `@` , `@` を追加しました。`@` は節や項の番号+タイトルを含むテキスト( `@` と同じ)、 `@` は節や項の番号のみ、`@` はタイトルのみに展開されます ([#1809]) diff --git a/NEWS.md b/NEWS.md index c4f05772d..1703aae65 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,21 @@ +# Version 5.6.0 +## New Features +* IDGXMLBuilder: support `imgmath` math_format in `//texequation` and `@` ([#1829]) +* LATEXBuilder: use `reviewicon` macro instead of `reviewincludegraphics` in `@` ([#1838]) +* trim spaces before/after characters in ruby text ([#1839]) + +## Breaking Changes +* LATEXBuilder: use `MEMO`, `NOTICE`, `CAUTION` or other headers instead of `■メモ`. If you want to use older headers, add `■メモ` in `locale.yml`. ([#1856]) + +## Others +* update documents `format.md` and `format.ja.md` ([#1860]) + +[#1829]: https://github.com/kmuto/review/pull/1829 +[#1838]: https://github.com/kmuto/review/pull/1838 +[#1839]: https://github.com/kmuto/review/pull/1839 +[#1856]: https://github.com/kmuto/review/pull/1856 +[#1860]: https://github.com/kmuto/review/pull/1860 + # Version 5.5.0 ## New Features * introduced `@`, `@`, and `@` as inline op to refer sections ([#1809]) From f7c92684cb2e26608f4f294b29dd2386fd430233 Mon Sep 17 00:00:00 2001 From: takahashim Date: Sat, 29 Oct 2022 13:08:13 +0900 Subject: [PATCH 2/2] Bump up 5.6.0 --- lib/review/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/review/version.rb b/lib/review/version.rb index dccb9cc4f..052713f38 100644 --- a/lib/review/version.rb +++ b/lib/review/version.rb @@ -1,3 +1,3 @@ module ReVIEW - VERSION = '5.5.0'.freeze + VERSION = '5.6.0'.freeze end