From b8436219eb772f4f1f2246815d4b9e019b7da890 Mon Sep 17 00:00:00 2001 From: Kimiyuki Onaka Date: Thu, 13 Aug 2020 23:21:50 +0900 Subject: [PATCH] RELEASE: 10.1.0 --- CHANGELOG.md | 6 ++++++ onlinejudge_command/__about__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaac43fc..85bba9c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 10.1.0 / 2020-07-11 + +- [#791](https://github.com/online-judge-tools/oj/pull/791) add WebDriver supports of more browsers +- [#789](https://github.com/online-judge-tools/oj/pull/789) change the style of logging from [pwntools](https://github.com/Gallopsled/pwntools)'s one to Python's standard one +- [#793](https://github.com/online-judge-tools/oj/pull/793) fix a minor bug of logging + ## 10.0.5 / 2020-07-12 - [#787](https://github.com/online-judge-tools/oj/pull/787) add a workaround for the conflict of a module name diff --git a/onlinejudge_command/__about__.py b/onlinejudge_command/__about__.py index 97eb7b0b..9350c613 100644 --- a/onlinejudge_command/__about__.py +++ b/onlinejudge_command/__about__.py @@ -4,6 +4,6 @@ __email__ = 'kimiyuki95@gmail.com' __license__ = 'MIT License' __url__ = 'https://github.com/online-judge-tools/oj' -__version_info__ = (10, 0, 5, 'final', 0) +__version_info__ = (10, 1, 0, 'final', 0) __version__ = '.'.join(map(str, __version_info__[:3])) __description__ = 'CLI tool to solve problems of competitive programming'