Skip to content

Commit

Permalink
Release/1.1.0 (#81)
Browse files Browse the repository at this point in the history
* Update version to 1.1.0

* Update README

* Update CHANGELOG.md

* fix a bug of Java template (no issue)
  • Loading branch information
kyuridenamida authored Jan 17, 2019
1 parent e33079c commit 8f0ca94
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 1.1.0 / 2018-01-18
- [#80](https://github.com/kyuridenamida/atcoder-tools/pull/80) Anything configurable from command line is configurable from toml
- [#79](https://github.com/kyuridenamida/atcoder-tools/pull/79) Delete --replacement and use template for both failure and success instead
- [#78](https://github.com/kyuridenamida/atcoder-tools/pull/78) Better default C++ template with move semantics

## 1.0.6.1 / 2018-01-13
- [#76](https://github.com/kyuridenamida/atcoder-tools/pull/76) Fix a bug the default templates are wrong.

Expand Down
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ Python 3.5 で動作する [AtCoder](http://atcoder.jp/) からサンプル入

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

## How to install
`pip3 install atcoder-tools`
Expand Down Expand Up @@ -142,13 +145,12 @@ optional arguments:

```$xslt
[codestyle]
indent_type = 'space' # 'tab' or 'space'
indent_width = 4
indent_type='space' # 'tab' or 'space'
indent_width=4
template_file='~/my_template.cpp'
workspace_dir = '~/atcoder-workspace/'
lang = 'cpp' # 'cpp' or 'java' (Currently)
workspace_dir='~/atcoder-workspace/'
lang='cpp' # 'cpp' or 'java' (Currently)
code_generator_file="~/custom_code_generator.py"
[postprocess]
exec_on_each_problem_dir='clang-format -i ./*.cpp'
exec_on_contest_dir='touch CMakeLists.txt'
Expand Down
2 changes: 1 addition & 1 deletion atcodertools/release_management/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.6.1"
__version__ = "1.1.0"
2 changes: 0 additions & 2 deletions atcodertools/tools/templates/default_template.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
package atcodertools.tools.templates;

import java.io.*;
import java.util.*;

Expand Down

0 comments on commit 8f0ca94

Please sign in to comment.