Skip to content

Commit 552c2e7

Browse files
Release 1.1.3 (kyuridenamida#125)
* Update version * Update change log
1 parent 031bcdc commit 552c2e7

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

CHANGELOG.md

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

3+
## 1.1.3 / 2019-03-06
4+
- [#122](https://github.com/kyuridenamida/atcoder-tools/pull/122) Support pip installation on Windows (cmd.exe)
5+
- Thanks for [@kotamanegi](https://github.com/kotamanegi/)'s contribution!
6+
- [#115](https://github.com/kyuridenamida/atcoder-tools/pull/115) Chrome Extension to see generated code by atcoder-tools for archived contests
7+
- Thanks for [@kmyk](https://github.com/kmyk/)'s contribution!
8+
- [#117](https://github.com/kyuridenamida/atcoder-tools/pull/117) Add tool advertisement on the default codes
9+
- Thanks for [@kmyk](https://github.com/kmyk/)'s contribution again!
10+
311
## 1.1.2 / 2019-02-21
412
- [#98](https://github.com/kyuridenamida/atcoder-tools/pull/98) Add "codegen" sub command to simply generate the input part for a specific problem without preparing other files.
513
- Thanks for [@kmyk](https://github.com/kmyk/)'s contribution!
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.1.2"
1+
__version__ = "1.1.3"

tests/resources/test_codegen/test_default_code_generators_and_templates/cpp/expected_default_generated_code.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ void solve(long long N, long long M, std::vector<std::vector<std::string>> H, st
99

1010
}
1111

12-
// Generated by 1.1.2 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
12+
// Generated by 1.1.3 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
1313
int main(){
1414
long long N;
1515
scanf("%lld",&N);

tests/resources/test_codegen/test_default_code_generators_and_templates/java/expected_default_generated_code.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Main {
66
static final String YES = "yes";
77
static final String NO = "NO";
88

9-
// Generated by 1.1.2 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
9+
// Generated by 1.1.3 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
1010
public static void main(String[] args) throws Exception {
1111
final Scanner sc = new Scanner(System.in);
1212
long N;

tests/resources/test_codegen/test_default_code_generators_and_templates/python/expected_default_generated_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def solve(N: int, M: int, H: "List[List[str]]", A: "List[int]", B: "List[float]"
99
return
1010

1111

12-
# Generated by 1.1.2 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
12+
# Generated by 1.1.3 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
1313
def main():
1414
def iterate_tokens():
1515
for line in sys.stdin:

tests/resources/test_codegen/test_default_code_generators_and_templates/rust/expected_default_generated_code.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fn solve(N: i64, M: i64, H: Vec<Vec<String>>, A: Vec<i64>, B: Vec<f64>, Q: i64,
88

99
}
1010

11-
// Generated by 1.1.2 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
11+
// Generated by 1.1.3 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
1212
fn main() {
1313
let con = read_string();
1414
let mut scanner = Scanner::new(&con);

0 commit comments

Comments
 (0)