diff --git a/CHANGELOG.md b/CHANGELOG.md index 9aba459c..7e1e2127 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 11.4.0 / 2021-07-20 + +- [#886](https://github.com/online-judge-tools/oj/pull/886) add `test-interactive` subcommand as an alias of `test-reactive` subcommand ([@cai-lw](https://github.com/cai-lw)) + ## 11.3.3 / 2021-07-17 - [#884](https://github.com/online-judge-tools/oj/pull/884) fix the issue of terminal logs again diff --git a/onlinejudge_command/__about__.py b/onlinejudge_command/__about__.py index 9474f297..9b6b618f 100644 --- a/onlinejudge_command/__about__.py +++ b/onlinejudge_command/__about__.py @@ -3,6 +3,6 @@ __email__ = 'kimiyuki95@gmail.com' __license__ = 'MIT License' __url__ = 'https://github.com/online-judge-tools/oj' -__version_info__ = (11, 3, 3, 'final', 0) +__version_info__ = (11, 4, 0, 'final', 0) __version__ = '.'.join(map(str, __version_info__[:3])) __description__ = 'CLI tool to solve problems of competitive programming'