Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move error reporting and initialisation clean-up #135

Merged
merged 13 commits into from
Feb 17, 2020
Merged
  •  
  •  
  •  
6 changes: 3 additions & 3 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 = "polonius"
version = "0.6.0"
version = "0.7.0"
authors = ["The Rust Project Developers", "Polonius Developers"]
description = "Core definition for the Rust borrow checker"
license = "Apache-2.0/MIT"
Expand All @@ -15,7 +15,7 @@ polonius-parser = {version = "0.4.0", path = "polonius-parser" }

[dependencies]
rustc-hash = "1.0.0"
polonius-engine = {version = "0.11.0", path = "polonius-engine" }
polonius-engine = {version = "0.12.0", path = "polonius-engine" }
log = "0.4"
petgraph = "0.4.13"
pico-args = "0.2"
Expand Down
9 changes: 9 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# polonius

## v0.7.0
- update to the latest `polonius-engine`

## v0.6.0
- update to the latest `polonius-engine`
- update the test parser to add the new facts related to subset errors
Expand Down Expand Up @@ -33,6 +36,12 @@ Add a CLI option `--dump-liveness-graph` to dump a Graphviz file with a

# polonius-engine

## v.0.12.0

- finish moving to the new terminology
- implement move tracking
- remove some of the input facts not needed for testing

## v0.11.0

- adopt a new terminology for the Atoms, and begin documenting everything in a book
Expand Down
1 change: 0 additions & 1 deletion inputs/blog-exmple/nll-facts/foo/borrow_region.facts

This file was deleted.

19 changes: 0 additions & 19 deletions inputs/blog-exmple/nll-facts/foo/cfg_edge.facts

This file was deleted.

3 changes: 0 additions & 3 deletions inputs/blog-exmple/nll-facts/foo/invalidates.facts

This file was deleted.

1 change: 0 additions & 1 deletion inputs/blog-exmple/nll-facts/foo/killed.facts

This file was deleted.

1 change: 0 additions & 1 deletion inputs/blog-exmple/nll-facts/foo/outlives.facts

This file was deleted.

7 changes: 0 additions & 7 deletions inputs/blog-exmple/nll-facts/foo/var_defined.facts

This file was deleted.

1 change: 0 additions & 1 deletion inputs/blog-exmple/nll-facts/foo/var_uses_region.facts

This file was deleted.

7 changes: 0 additions & 7 deletions inputs/blog-exmple/nll-facts/main/cfg_edge.facts

This file was deleted.

6 changes: 1 addition & 5 deletions inputs/collect-facts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,7 @@

RUSTC_RELEASE="stage1"
RUSTC_ARGS="-Znll-facts -Zborrowck=mir"
INPUT_FOLDERS=(drop-liveness drop-may-dangle drop-no-may-dangle enum-drop-access
issue-47680 issue-52059-report-when-borrow-and-drop-conflict
maybe-initialized-drop maybe-initialized-drop-implicit-fragment-drop
maybe-initialized-drop-uninitialized maybe-initialized-drop-with-fragment
maybe-initialized-drop-with-uninitialized-fragments smoke-test vec-push-ref)
INPUT_FOLDERS=(issue-47680 smoke-test vec-push-ref)

for test_folder in "${INPUT_FOLDERS[@]}";
do
Expand Down
7 changes: 0 additions & 7 deletions inputs/drop-liveness/nll-facts/main/borrow_region.facts

This file was deleted.

239 changes: 0 additions & 239 deletions inputs/drop-liveness/nll-facts/main/cfg_edge.facts

This file was deleted.

Loading