diff --git a/NEWS.ja.md b/NEWS.ja.md index 0982de2f7..055f84cc6 100644 --- a/NEWS.ja.md +++ b/NEWS.ja.md @@ -1,3 +1,20 @@ +# Version 5.9.0 +## バグ修正 +* LATEXBuilder: `@`, `@`, `@`, `@`での空白幅が適切になるよう修正しました。またPDF栞の扱いを改善しました([#1906],[#1907])。 + +## 機能強化 +* `review-jlreq.cls`のUsers Guideで用紙サイズの指定にJIS B列とISO B列を区別するようにしました([#1904]) +* `config.yml.sample`での誤記を修正しました([#1909]) + +## コントリビューターのみなさん +* [@munepi](https://github.com/munepi) +* [@koshikawa](https://github.com/koshikawa) + +[#1904]: https://github.com/kmuto/review/pull/1904 +[#1906]: https://github.com/kmuto/review/issues/1906 +[#1907]: https://github.com/kmuto/review/pull/1907 +[#1909]: https://github.com/kmuto/review/pull/1909 + # Version 5.8.0 ## 新機能 * `//graph` 命令でMermaid記法によるグラフ記述ができるようになりました。外部ツールの用意や設定については`doc/format.ja.md`を参照してください ([#1885]) diff --git a/NEWS.md b/NEWS.md index 9bfc663fd..0ef4792bb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,20 @@ +# Version 5.9.0 +## Bug Fixes +* LATEXBuilder: fix the spacing for `@`, `@`, `@`, `@` to be more appropriate. Also improved handling of PDF bookmarks ([#1906], [#1907]). + +## Enhancements +* differentiated between JIS B and ISO B paper sizes in `review-jlreq.cls` Users Guide ([#1904]). +* fix typos in `config.yml.sample` ([#1909]). + +## Contributors +* [@munepi](https://github.com/munepi) +* [@koshikawa](https://github.com/koshikawa) + +[#1904]: https://github.com/kmuto/review/pull/1904 +[#1906]: https://github.com/kmuto/review/issues/1906 +[#1907]: https://github.com/kmuto/review/pull/1907 +[#1909]: https://github.com/kmuto/review/pull/1909 + # Version 5.8.0 ## New Features * The `//graph` operator allows graphical description in Mermaid notation. See `doc/format.md` for details on prepairing and setting up external tools ([#1885]) diff --git a/lib/review/version.rb b/lib/review/version.rb index c2fd0fff9..7e7bc47fd 100644 --- a/lib/review/version.rb +++ b/lib/review/version.rb @@ -1,3 +1,3 @@ module ReVIEW - VERSION = '5.8.0'.freeze + VERSION = '5.9.0'.freeze end