Skip to content

Commit 8f0ca94

Browse files
Release/1.1.0 (kyuridenamida#81)
* Update version to 1.1.0 * Update README * Update CHANGELOG.md * fix a bug of Java template (no issue)
1 parent e33079c commit 8f0ca94

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

CHANGELOG.md

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

3+
## 1.1.0 / 2018-01-18
4+
- [#80](https://github.com/kyuridenamida/atcoder-tools/pull/80) Anything configurable from command line is configurable from toml
5+
- [#79](https://github.com/kyuridenamida/atcoder-tools/pull/79) Delete --replacement and use template for both failure and success instead
6+
- [#78](https://github.com/kyuridenamida/atcoder-tools/pull/78) Better default C++ template with move semantics
7+
38
## 1.0.6.1 / 2018-01-13
49
- [#76](https://github.com/kyuridenamida/atcoder-tools/pull/76) Fix a bug the default templates are wrong.
510

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ Python 3.5 で動作する [AtCoder](http://atcoder.jp/) からサンプル入
88

99
このツールには次のような機能があります。
1010
- AtCoderへのログイン,入出力例データなどの抽出
11-
- 枝刈り探索による高精度・高速な入力解析 (ARC、ABC、AGCについては約9割ほど)
12-
- 解析結果を用いたテンプレートコードの自動生成(C++, Java)
11+
- 枝刈り探索による高精度・高速な入力フォーマット解析 (ARC、ABC、AGCについては約9割ほど)
12+
- 問題文中に含まれるMOD値やYES/NO文字列等の定数値抽出
13+
- 入力フォーマット解析結果や抽出した定数値を用いたテンプレートコードの自動生成(C++, Java)
14+
- カスタムテンプレートに対応
1315
- 他言語対応のためのコントリビューション(≒中間形式からコードに変換する部分のPR)を募集中です!
16+
- コード提出機能
1417

1518
## How to install
1619
`pip3 install atcoder-tools`
@@ -142,13 +145,12 @@ optional arguments:
142145

143146
```$xslt
144147
[codestyle]
145-
indent_type = 'space' # 'tab' or 'space'
146-
indent_width = 4
148+
indent_type='space' # 'tab' or 'space'
149+
indent_width=4
147150
template_file='~/my_template.cpp'
148-
workspace_dir = '~/atcoder-workspace/'
149-
lang = 'cpp' # 'cpp' or 'java' (Currently)
151+
workspace_dir='~/atcoder-workspace/'
152+
lang='cpp' # 'cpp' or 'java' (Currently)
150153
code_generator_file="~/custom_code_generator.py"
151-
152154
[postprocess]
153155
exec_on_each_problem_dir='clang-format -i ./*.cpp'
154156
exec_on_contest_dir='touch CMakeLists.txt'
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.6.1"
1+
__version__ = "1.1.0"

atcodertools/tools/templates/default_template.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
package atcodertools.tools.templates;
2-
31
import java.io.*;
42
import java.util.*;
53

0 commit comments

Comments
 (0)