Skip to content

Commit

Permalink
Release v0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip committed Jun 11, 2021
1 parent d2f9b8e commit 06470bd
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 47 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## [Unreleased]
## [0.15.0] - 2021-06-11Z

### Changed

Expand All @@ -10,8 +10,10 @@
use proconio::{fastout, input};
```


```rust
use proconio::{/*fastout*/, input};
use proconio::{/*fastout,*/ input};
#[allow(unused_imports)]
use proconio::fastout;
```
Expand Down
62 changes: 22 additions & 40 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-equip"
version = "0.14.0"
version = "0.15.0"
authors = ["Ryo Yamashita <qryxip@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -10,7 +10,7 @@ keywords = ["competitive", "cli", "windows"]
categories = ["command-line-utilities", "development-tools::cargo-plugins"]

[dependencies]
anyhow = "1.0.40"
anyhow = "1.0.41"
arrayvec = { version = "0.7.1", features = ["serde"] }
atty = "0.2.14"
camino = { version = "1.0.4", features = ["serde1"] }
Expand All @@ -20,7 +20,7 @@ dirs-next = "2.0.0"
fixedbitset = "0.4.0"
if_chain = "1.0.1"
indoc = "1.0.3"
itertools = "0.10.0"
itertools = "0.10.1"
krates = "0.7.0"
libflate = "1.1.0"
maplit = "1.0.2"
Expand All @@ -37,11 +37,11 @@ shell-escape = "0.1.5"
smol_str = { version = "0.1.17", features = ["serde"] }
spdx = "0.4.0"
structopt = "0.3.21"
syn = { version = "1.0.72", features = ["extra-traits", "full", "parsing", "visit"] }
syn = { version = "1.0.73", features = ["extra-traits", "full", "parsing", "visit"] }
tempfile = "3.2.0"
termcolor = "1.1.2"
toml = "0.5.8"
toml_edit = "0.2.0"
toml_edit = "0.2.1"
which = "4.1.0"
xshell = "0.1.14"

Expand Down

0 comments on commit 06470bd

Please sign in to comment.