Skip to content

Commit 127e1b8

Browse files
committed
RELEASE: 10.0.0
1 parent ee2bb00 commit 127e1b8

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## 10.0.0 / Unreleased
3+
## 10.0.0 / 2020-05-02
44

5-
- forked from [online-judge-tools](https://github.com/kmyk/online-judge-tools) `v9.2.0`
5+
- forked from [online-judge-tools](https://github.com/kmyk/online-judge-tools) `v9.2.2`
66
- add `oj-api` command

onlinejudge/__about__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Python Version: 3.x
2-
__package_name__ = 'online-judge-tools'
2+
__package_name__ = 'online-judge-api-client'
33
__author__ = 'Kimiyuki Onaka'
44
__email__ = '[email protected]'
55
__license__ = 'MIT License'
6-
__url__ = 'https://github.com/kmyk/online-judge-tools'
7-
__version_info__ = (9, 2, 2, 'final', 0)
6+
__url__ = 'https://github.com/online-judge-tools/api-client'
7+
__version_info__ = (10, 0, 0, 'final', 0)
88
__version__ = '.'.join(map(str, __version_info__[:3]))
9-
__description__ = 'Tools for online-judge services'
9+
__description__ = 'API client to develop tools for competitive programming'

setup.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ def load_module(module_path):
1515
version = load_module('onlinejudge.__about__')
1616

1717
setup(
18-
name='online-judge-api-client',
19-
version='9.2.0',
20-
author='Kimiyuki Onaka',
21-
author_email='[email protected]',
22-
url='https://github.com/kmyk/online-judge-api-client',
23-
license='MIT License',
24-
description='API client to develop tools for competitive programming',
18+
name=version.__package_name__,
19+
version=version.__version__,
20+
author=version.__author__,
21+
author_email=version.__email__,
22+
url=version.__url__,
23+
license=version.__license__,
24+
description=version.__description__,
2525
python_requires='>=3.5',
2626
install_requires=[
2727
'appdirs >= 1',

0 commit comments

Comments
 (0)