Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RELEASE: 12.0.0 #928

Merged
merged 1 commit into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 12.0.0 / 2024-05-03
- [#927](https://github.com/online-judge-tools/oj/pull/927) (breaking changes) bump minimum Python version to 3.8 (remove Python 3.6/3.7 support)
- [#926](https://github.com/online-judge-tools/oj/pull/926) add dependabot
- [#925](https://github.com/online-judge-tools/oj/pull/925) remove distutils, support Python 3.12 (thanks [@kzrnm](https://github.com/kzrnm))
- [#924](https://github.com/online-judge-tools/oj/pull/924) add gitignore (thanks [@kzrnm](https://github.com/kzrnm))
- [#922](https://github.com/online-judge-tools/oj/pull/922) opiton -> option
- [#921](https://github.com/online-judge-tools/oj/pull/921) fix typo (thanks [@newbie1111](https://github.com/newbie1111))
- [#920](https://github.com/online-judge-tools/oj/pull/920) fix broken CI (thanks [@key-moon](https://github.com/key-moon))
- [#911](https://github.com/online-judge-tools/oj/pull/911) add scheduled builds
- [#910](https://github.com/online-judge-tools/oj/pull/910) fix CI
- [#909](https://github.com/online-judge-tools/oj/pull/909) fix typos and ambiguous words in README.md

## 11.5.1 / 2021-09-13

- [#902](https://github.com/online-judge-tools/oj/pull/902) fix a bug of `--display-mode=diff-all` that the last line is not shown
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__ = (11, 5, 1, 'final', 0)
__version_info__ = (12, 0, 0, 'final', 0)
__version__ = '.'.join(map(str, __version_info__[:3]))
__description__ = 'CLI tool to solve problems of competitive programming'
Loading