Skip to content

Commit

Permalink
Merge pull request #215 from qryxip/fix-ci
Browse files Browse the repository at this point in the history
Release v0.10.7
  • Loading branch information
qryxip committed Jun 8, 2024
2 parents f17c374 + fe1b578 commit 6d675a0
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 103 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ jobs:
RUST_BACKTRACE: full
ATCODER_USERNAME: ${{ secrets.ATCODER_USERNAME }}
ATCODER_PASSWORD: ${{ secrets.ATCODER_PASSWORD }}
if: false # perhaps AtCoder no longer allows tests like ours

upload-archives:
strategy:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.10.7] - 2024-06-08Z

### Changed

- For ABC cargo-compete no longer extract time limits and the relative/absolute errors, because they are not "specific integers or strings". ([qryxip/snowchains#164](https://github.com/qryxip/snowchains/pull/164))

## [0.10.6] - 2023-08-13Z

### Changed
Expand Down
108 changes: 10 additions & 98 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-compete"
version = "0.10.7-alpha.1"
version = "0.10.7"
authors = ["Ryo Yamashita <qryxip@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -51,7 +51,7 @@ serde_json = "1.0.79"
serde_with = "1.12.0"
serde_yaml = "0.8.23"
shell-escape = "0.1.5"
snowchains_core = "0.13.2"
snowchains_core = "0.13.3"
structopt = "0.3.26"
strum = { version = "0.20.0", features = ["derive"] }
tempfile = "3.3.0"
Expand Down
6 changes: 3 additions & 3 deletions src/commands/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ pub fn run(opt: OptCompeteNew, ctx: crate::Context<'_>) -> anyhow::Result<()> {

let group = Group::Atcoder(crate::web::url::atcoder_contest(
outcome
.get(0)
.first()
.and_then(|p| p.contest_url.as_ref())
.with_context(|| "empty result")?,
)?);
Expand Down Expand Up @@ -145,7 +145,7 @@ pub fn run(opt: OptCompeteNew, ctx: crate::Context<'_>) -> anyhow::Result<()> {

let group = Group::Codeforces(crate::web::url::codeforces_contest(
outcome
.get(0)
.first()
.and_then(|p| p.contest_url.as_ref())
.with_context(|| "empty result")?,
)?);
Expand Down Expand Up @@ -208,7 +208,7 @@ pub fn run(opt: OptCompeteNew, ctx: crate::Context<'_>) -> anyhow::Result<()> {
)?;

let contest = outcome
.get(0)
.first()
.and_then(|p| p.contest_url.as_ref())
.map(crate::web::url::yukicoder_contest)
.transpose()?;
Expand Down

0 comments on commit 6d675a0

Please sign in to comment.