Skip to content

Commit

Permalink
Release v0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Dec 15, 2021
1 parent ef67b6a commit 0c91300
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 50 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [0.10.2] - 2021-12-15Z

### Changed

- (also applied to the previous versions unless `--locked`) Updated `serde-yaml` crate to v0.8.23.

```diff
match:
Float:
- relative_error: 0.000001
- absolute_error: 0.000001
+ relative_error: 1e-6
+ absolute_error: 1e-6
```

[dtolnay/serde-yaml@`6b83603`](https://github.com/dtolnay/serde-yaml/commit/6b836037b58ebb359e7c485fc6002b1e8214bd6c)

### Fixed

- Updated Rust edition, Rust version, and the language ID for Codeforces. ([#181](https://github.com/qryxip/cargo-compete/issues/181) by [@nebocco](https://github.com/nebocco))

## [0.10.1] - 2021-12-09Z

### Fixed
Expand Down
101 changes: 59 additions & 42 deletions Cargo.lock

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

11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-compete"
version = "0.10.1"
version = "0.10.2"
authors = ["Ryo Yamashita <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -38,18 +38,18 @@ liquid = "0.22.0"
liquid-core = "0.22.0"
liquid-derive = "0.22.0"
maplit = "1.0.2"
once_cell = "1.8.0"
once_cell = "1.9.0"
opener = "0.4.1"
percent-encoding = "2.1.0"
prettytable-rs = "0.8.0"
reqwest = { version = "0.11.7", default-features = false, features = ["blocking"] }
rpassword = "5.0.1"
rprompt = "1.0.5"
serde = { version = "1.0.130", features = ["derive"] }
serde = { version = "1.0.131", features = ["derive"] }
serde_ignored = "0.1.2"
serde_json = "1.0.72"
serde_json = "1.0.73"
serde_with = "1.11.0"
serde_yaml = "0.8.21"
serde_yaml = "0.8.23"
shell-escape = "0.1.5"
snowchains_core = "0.13.0"
structopt = "0.3.25"
Expand All @@ -67,6 +67,5 @@ term_size = "=1.0.0-beta.2"

[dev-dependencies]
insta = { version = "1.8.0", features = ["redactions"] }
once_cell = "1.8.0"
pretty_assertions = "0.7.2"
regex = "1.5.4"
4 changes: 2 additions & 2 deletions tests/snapshots/new__atcoder_abc003_file_tree.snap
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ expression: tree
"in": {},
"out": {}
},
"a.yml": "---\ntype: Batch\ntimelimit: 2s\nmatch:\n Float:\n relative_error: 0.000001\n absolute_error: 0.000001\n\ncases:\n - name: sample1\n in: |\n 6\n out: |\n 35000\n - name: sample2\n in: |\n 91\n out: |\n 460000\n\nextend:\n - type: Text\n path: \"./a\"\n in: /in/*.txt\n out: /out/*.txt\n",
"a.yml": "---\ntype: Batch\ntimelimit: 2s\nmatch:\n Float:\n relative_error: 1e-6\n absolute_error: 1e-6\n\ncases:\n - name: sample1\n in: |\n 6\n out: |\n 35000\n - name: sample2\n in: |\n 91\n out: |\n 460000\n\nextend:\n - type: Text\n path: \"./a\"\n in: /in/*.txt\n out: /out/*.txt\n",
"b": {
"in": {},
"out": {}
Expand All @@ -32,7 +32,7 @@ expression: tree
"in": {},
"out": {}
},
"c.yml": "---\ntype: Batch\ntimelimit: 2s\nmatch:\n Float:\n relative_error: 0.000001\n absolute_error: 0.000001\n\ncases:\n - name: sample1\n in: |\n 2 2\n 1000 1500\n out: |\n 1000.000000\n - name: sample2\n in: |\n 2 1\n 1000 1500\n out: |\n 750\n - name: sample3\n in: |\n 10 5\n 2604 2281 3204 2264 2200 2650 2229 2461 2439 2211\n out: |\n 2820.031250000\n\nextend:\n - type: Text\n path: \"./c\"\n in: /in/*.txt\n out: /out/*.txt\n",
"c.yml": "---\ntype: Batch\ntimelimit: 2s\nmatch:\n Float:\n relative_error: 1e-6\n absolute_error: 1e-6\n\ncases:\n - name: sample1\n in: |\n 2 2\n 1000 1500\n out: |\n 1000.000000\n - name: sample2\n in: |\n 2 1\n 1000 1500\n out: |\n 750\n - name: sample3\n in: |\n 10 5\n 2604 2281 3204 2264 2200 2650 2229 2461 2439 2211\n out: |\n 2820.031250000\n\nextend:\n - type: Text\n path: \"./c\"\n in: /in/*.txt\n out: /out/*.txt\n",
"d": {
"in": {},
"out": {}
Expand Down

0 comments on commit 0c91300

Please sign in to comment.