Skip to content

Commit

Permalink
Changed default for check Build Target
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-medeiros committed Dec 16, 2016
1 parent cbae892 commit fabe5df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions documentation/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,14 @@
### 0.8.0
* Added support for Cargo's JSON output, with `--message-format json`. (#138)
#TODO
* Added syntax coloring support for `?` operator.
* Invoking a build operation for a project now immediately cancels the pending build operation for that project, if any.
* Added syntax coloring support for `?` operator.
* More lenient with `rustfmt` exit code 3, don't treat those warnings as a failure. (#144)
* Fixed: "Member `def_site_span` is not an Object" error. (#146)
* Added: Cargo `clean` Build Target.
* Build target `check` now defaults to `cargo check --message-format=json`.
* Note: `cargo check` only available in nightly ATM.
#TODO recheck on release
* Fixed: "Member `def_site_span` is not an Object" error. (#146)

### 0.7.0
* Added support for Rust 1.12 new error message format. (#130)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class RustBuildManager extends BuildManager {
public static final RustCrateBuildType BUILD_TYPE_Build = new RustCrateBuildType(BUILD_TYPE_Build_Label,
"test --no-run --message-format=json");
public static final RustCrateBuildType BUILD_TYPE_Check = new RustCheckBuildType(BUILD_TYPE_Check_Label,
"rustc --lib -- -Zno-trans --error-format=json");
"check --message-format=json");
public static final RustCrateBuildType BUILD_TYPE_Clean = new RustCheckBuildType(BUILD_TYPE_Clean_Label,
"clean");

Expand Down

0 comments on commit fabe5df

Please sign in to comment.