From 73dfed45659e42ee29dbf81eec9481d6aaea3ea8 Mon Sep 17 00:00:00 2001 From: Kimiyuki Onaka Date: Tue, 1 Sep 2020 09:55:23 +0900 Subject: [PATCH] RELEASE: 10.1.3 --- CHANGELOG.md | 5 +++++ onlinejudge_command/__about__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 809c51de..2e9d2f20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## 10.1.3 / 2020-09-01 + +- [#806](https://github.com/online-judge-tools/oj/pull/806) fix a bug of `generate-input` subcommand about logging ([@rsk0315](https://github.com/rsk0315)) +- [#807](https://github.com/online-judge-tools/oj/pull/807) fix a bug of `generate-input` subcommand which happens when generators failed + ## 10.1.2 / 2020-08-22 - [#801](https://github.com/online-judge-tools/oj/pull/801) fix a bug of logging on Windows `cmd.exe` diff --git a/onlinejudge_command/__about__.py b/onlinejudge_command/__about__.py index 6b9d65a1..dc9bf169 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, 1, 2, 'final', 0) +__version_info__ = (10, 1, 3, 'final', 0) __version__ = '.'.join(map(str, __version_info__[:3])) __description__ = 'CLI tool to solve problems of competitive programming'