Skip to content

Commit

Permalink
Merge pull request #70 from qryxip/release-v0.9.0
Browse files Browse the repository at this point in the history
Release v0.9.0
  • Loading branch information
qryxip authored Nov 27, 2020
2 parents a8ee856 + 1c8947b commit 8bc6cd5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 14 deletions.
20 changes: 8 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## [Unreleased]
## [0.9.0] - 2020-11-27Z

### Added

- Added `--exclude-atcoder-crates`, `--exclude-codingame-crates`, and `--exclude <SPEC>...` options.
- Added `--exclude-atcoder-crates`, `--exclude-codingame-crates`, and `--exclude <SPEC>...` options. ([#68](https://github.com/qryxip/cargo-equip/pull/68))

```console
--exclude <SPEC>... Exclude library crates from bundling
Expand All @@ -14,7 +14,7 @@

### Changed

- Changed format of the "# Bundled libraries".
- Changed format of the "# Bundled libraries". ([#64](https://github.com/qryxip/cargo-equip/pull/64))

```rust
//! # Bundled libraries
Expand All @@ -27,7 +27,7 @@
//! - `xorshift v0.0.0` → `crate::__xorshift_0_0_0` (source: `git+https://github.com/qryxip/oj-verify-playground#63ddefa84d96b16cdb7f85e70dcdc4f283f57391`, license: `CC0-1.0`)
```

- Now cargo-equip adds "License and copyright notices" to the output when you are using other people's libraries.
- Now cargo-equip adds "License and copyright notices" to the output when you are using other people's libraries. ([#64](https://github.com/qryxip/cargo-equip/pull/64), [#68](https://github.com/qryxip/cargo-equip/pull/68))

```rust
//! # License and Copyright Notices
Expand Down Expand Up @@ -65,9 +65,9 @@

Currently, only `CC0-1.0`, `Unlicense`, `MIT` and `Apache-2.0` are supported.

- Now cargo-equip considers [platform specific dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#platform-specific-dependencies).
- Now cargo-equip considers [platform specific dependencies](https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#platform-specific-dependencies). ([#66](https://github.com/qryxip/cargo-equip/pull/66))

- The 39 crate available on AtCoder are no longer automatically excluded from bundling.
- The 39 crate available on AtCoder are no longer automatically excluded from bundling. ([#68](https://github.com/qryxip/cargo-equip/pull/68))

Enable `--exlude-atcoder-crates` to exclude them.

Expand All @@ -80,13 +80,9 @@

### Fixed

- Only runs `cargo check` on crates to bundle to get `$OUT_DIR`s.
- `extern crate {core, alloc, std};` will be just ignored. ([#67](https://github.com/qryxip/cargo-equip/pull/67))

Previously, cargo-equip tried to `check` all of the packages with `custom-build` and failed.

- `extern crate {core, alloc, std};` will be just ignored.

- Replaced `-p <libraries>...` for `cargo check` with `--bin <binary>` when obtaining `$OUT_DIR`s.
- Replaced `-p <libraries>...` for `cargo check` with `--bin <binary>` when obtaining `$OUT_DIR`s. ([#69](https://github.com/qryxip/cargo-equip/pull/69))

Previously, `cargo check` sometimes failed.

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-equip"
version = "0.8.0"
version = "0.9.0"
authors = ["Ryo Yamashita <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 8bc6cd5

Please sign in to comment.