Skip to content

Commit

Permalink
Release v0.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Feb 18, 2021
1 parent d3fc1df commit ebe155e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 48 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
# Changelog

## [Unreleased]
## [0.8.3] - 2021-02-18Z

### Added

- cargo-compete now reads these environment variables if they exist, and use them.
- cargo-compete now reads these environment variables if they exist, and use them. ([#129](https://github.com/qryxip/cargo-compete/pull/129))

- `$DROPBOX_ACCESS_TOKEN`
- `$YUKICODER_API_KEY`
- `$CODEFORCES_API_KEY`
- `$CODEFORCES_API_SECRET`

### Fixed

- Added `#[serde(default)]` to `PartialBatchTestCase::out: Option<Arc<str>>`. ([qryxip/snowchains/#128](https://github.com/qryxip/snowchains/pull/128))

Previously, explicit `out: ~` had been allowed but the field itself was required.

## [0.8.2] - 2021-02-15Z

### Added
Expand Down
61 changes: 20 additions & 41 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-compete"
version = "0.8.2"
version = "0.8.3"
authors = ["Ryo Yamashita <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -34,7 +34,7 @@ itertools = "0.10.0"
krates = "0.6.0"
liquid = "0.21.5"
liquid-core = "0.21.3"
liquid-derive = "0.21.0"
liquid-derive = "0.21.1"
maplit = "1.0.2"
opener = "0.4.1"
percent-encoding = "2.1.0"
Expand All @@ -48,7 +48,7 @@ serde_ignored = "0.1.2"
serde_json = "1.0.62"
serde_yaml = "0.8.17"
shell-escape = "0.1.5"
snowchains_core = "0.9.0"
snowchains_core = "0.9.1"
structopt = "0.3.21"
strum = { version = "0.20.0", features = ["derive"] }
tempfile = "3.2.0"
Expand All @@ -63,6 +63,6 @@ which = "4.0.2"
term_size = "=1.0.0-beta.2"

[dev-dependencies]
insta = { version = "1.6.0", features = ["redactions"] }
insta = { version = "1.6.3", features = ["redactions"] }
once_cell = "1.5.2"
regex = "1.4.3"
2 changes: 1 addition & 1 deletion tests/snapshots/new__yukicoder_contest_100_file_tree.snap
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ expression: tree
},
"testcases": {
"a.yml": "---\ntype: Batch\ntimelimit: 5s\nmatch: Lines\n\ncases:\n - name: sample1\n in: |\n 4\n 500 300 200 100\n out: |\n 30\n - name: sample2\n in: |\n 5\n 400 250 200 100 50\n out: |\n 60\n - name: sample3\n in: |\n 5\n 200 200 200 200 200\n out: |\n 0\n\nextend: []\n",
"b.yml": "---\ntype: Batch\ntimelimit: 2s\nmatch: Lines\ncases:\n - name: sample1\n in: \"101\\n\"\n out: ~\n timelimit: ~\n match: ~\n - name: sample2\n in: \"1000\\n\"\n out: ~\n timelimit: ~\n match: ~\nextend: []\n",
"b.yml": "---\ntype: Batch\ntimelimit: 2s\nmatch: Lines\n\ncases:\n - name: sample1\n in: |\n 101\n - name: sample2\n in: |\n 1000\n\nextend: []\n",
"c.yml": "---\ntype: Batch\ntimelimit: 1s\nmatch: Lines\n\ncases:\n - name: sample1\n in: |\n 1+1\n out: |\n 2\n - name: sample2\n in: |\n 1+111\n out: |\n 112\n - name: sample3\n in: |\n 10+4-1+15\n out: |\n 514\n\nextend: []\n",
"d.yml": "---\ntype: Batch\ntimelimit: 5s\nmatch: Lines\n\ncases:\n - name: sample1\n in: \"2 5\\n1 1\"\n out: 5 12\n - name: sample2\n in: \"5 10\\n1 2 3 4 5\"\n out: 214 438\n - name: sample3\n in: \"30 987654321012\\n3 1 4 1 5 9 2 6 5 3 5 8 9 7 9 3 2 3 8 4 6 2 6 4 3 3 8 3 2 7\"\n out: 923032656 920866414\n\nextend: []\n",
"e.yml": "---\ntype: Batch\ntimelimit: 5s\nmatch: Lines\n\ncases:\n - name: sample1\n in: 5 13 34\n out: 1 1\n - name: sample2\n in: 11 11 11\n out: 1 3\n - name: sample3\n in: 5 6 9\n out: \"-1\"\n - name: sample4\n in: 35169 76228629 17995137\n out: 5487 14841\n\nextend: []\n",
Expand Down

0 comments on commit ebe155e

Please sign in to comment.