Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Mar 31, 2021
1 parent b45f699 commit d3c7f5f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
14 changes: 8 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## [Unreleased]
## [0.9.0] - 2021-03-31Z

### Added

- Added `template.new.dev-dependencies`.
- Added `template.new.dev-dependencies`. ([#152](https://github.com/qryxip/cargo-compete/pull/152))

```toml
profile = '''
Expand All @@ -20,18 +20,18 @@
'''
```

- Enabled running for `example` targets.
- Enabled running for `example` targets. ([#157](https://github.com/qryxip/cargo-compete/pull/157))

```toml
[package.metadata.cargo-compete.example]
atcoder-abc188-a = { problem = "https://atcoder.jp/contests/abc188/tasks/abc188_a" }
```

- Added `add.target-kind` configuration.
- Added `add.target-kind` configuration. ([#157](https://github.com/qryxip/cargo-compete/pull/157))

### Changed

- Modified the template for the `init` command.
- Modified the template for the `init` command. ([#156](https://github.com/qryxip/cargo-compete/pull/156))

```diff
#[submit.transpile]
Expand All @@ -41,7 +41,9 @@
##language_id = ""
```

- Now `download` command requires `--overwrite` flag to overwrite existing test files.
- Updated `rust-toolchain`s for Codeforces and yukicoder. ([#153](https://github.com/qryxip/cargo-compete/pull/153))

- Now `download` command requires `--overwrite` flag to overwrite existing test files. ([#158](https://github.com/qryxip/cargo-compete/pull/158))

```console
❯ cargo compete d
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-compete"
version = "0.8.8"
version = "0.9.0"
authors = ["Ryo Yamashita <qryxip@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 3 additions & 1 deletion README-ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ AtCoderの場合、[テストケースはDropboxにアップロードされて
}
```

[![asciicast](https://asciinema.org/a/403727.svg)](https://asciinema.org/a/403727?autoplay=1)
[![asciicast](https://asciinema.org/a/404203.svg)](https://asciinema.org/a/404203?autoplay=1)

### `cargo compete retrieve submission-summaries`

Expand Down Expand Up @@ -398,6 +398,8 @@ edition = "2018"
practice-a = { alias = "a", problem = "https://atcoder.jp/contests/practice/tasks/practice_1" }
practice-b = { alias = "b", problem = "https://atcoder.jp/contests/practice/tasks/practice_2" }

#[package.metadata.cargo-compete.example]

[[bin]]
name = "practice-a"
path = "src/bin/a.rs"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ and save a JSON file in the following format to <code>[{local data directory}](h
}
```

[![asciicast](https://asciinema.org/a/403727.svg)](https://asciinema.org/a/403727?autoplay=1)
[![asciicast](https://asciinema.org/a/404203.svg)](https://asciinema.org/a/404203?autoplay=1)

### `cargo compete retrieve submission-summaries`

Expand Down Expand Up @@ -395,6 +395,8 @@ edition = "2018"
practice-a = { alias = "a", problem = "https://atcoder.jp/contests/practice/tasks/practice_1" }
practice-b = { alias = "b", problem = "https://atcoder.jp/contests/practice/tasks/practice_2" }

#[package.metadata.cargo-compete.example]

[[bin]]
name = "practice-a"
path = "src/bin/a.rs"
Expand Down

0 comments on commit d3c7f5f

Please sign in to comment.