Skip to content

Commit

Permalink
Merge pull request #817 from online-judge-tools/release/11.0.0
Browse files Browse the repository at this point in the history
RELEASE: 11.0.0
  • Loading branch information
kmyk authored Sep 13, 2020
2 parents 034e035 + 9a932d0 commit 899473a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Change Log

## 11.0.0 / 2020-09-04

- [#816](https://github.com/online-judge-tools/oj/pull/816) (breaking changes) remove Python 3.5 support
- [#811](https://github.com/online-judge-tools/oj/pull/811) [#790](https://github.com/online-judge-tools/oj/pull/790) (breaking changes) update the `test` subcommand
- `--print-input` is now default.
- `--ignore-spaces` option and `--ignore-spaces-and-newlines` option are added.
- Now it always ignores the difference between CRLF and LF.
- Some options are renamed or removed.
- The current default behavior uses exact matching but ignores the difference of CRLF and LF.
- The previous default used exact matching but ignored trailing spaces and newlines of files. It was the same to the matching algorithm in Anarchy Golf.
- [#819](https://github.com/online-judge-tools/oj/pull/819) (breaking changes) remove some options from `submit`
- The options `--format-dos2unix`, `--format-rstrip`, `--golf` are removed. They are options for code golf.
- [#821](https://github.com/online-judge-tools/oj/pull/821) replace the default command of `test` subcommand on Windows with `.\a.exe`
- [#818](https://github.com/online-judge-tools/oj/pull/818) improve the output of `test` subcommand
- [#813](https://github.com/online-judge-tools/oj/pull/813) [#819](https://github.com/online-judge-tools/oj/pull/819) update some hint messages
- [#825](https://github.com/online-judge-tools/oj/pull/825) (breaking changes) change to print logs to stdout instead of stderr ([@ryo-n](https://github.com/ryo-n))
- `--json` options of some subcommands are also removed. They used stdout.

## 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))
Expand Down
2 changes: 1 addition & 1 deletion onlinejudge_command/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
__email__ = '[email protected]'
__license__ = 'MIT License'
__url__ = 'https://github.com/online-judge-tools/oj'
__version_info__ = (10, 1, 3, 'final', 0)
__version_info__ = (11, 0, 0, 'final', 0)
__version__ = '.'.join(map(str, __version_info__[:3]))
__description__ = 'CLI tool to solve problems of competitive programming'

0 comments on commit 899473a

Please sign in to comment.