Skip to content

Commit

Permalink
Merge pull request #140 from lqd/version_bump
Browse files Browse the repository at this point in the history
Bump versions for the subset errors computation
  • Loading branch information
matthewjasper authored Nov 26, 2019
2 parents 6e14300 + 24d4b9a commit c0dea8e
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polonius"
version = "0.5.0"
version = "0.6.0"
authors = ["The Rust Project Developers", "Polonius Developers"]
description = "Core definition for the Rust borrow checker"
license = "Apache-2.0/MIT"
Expand All @@ -11,11 +11,11 @@ edition = "2018"

[dev-dependencies]
diff = "0.1.0"
polonius-parser = {version = "0.3.0", path = "polonius-parser" }
polonius-parser = {version = "0.4.0", path = "polonius-parser" }

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

## v????

## v0.6.0
- update to the latest `polonius-engine`
- update the test parser to add the new facts related to subset errors
- update, deduplicate, and remove some dependencies
- remove `--ignore-region-live-at`, as the `region_live_at` is now gone
from the inputs and is always calculated!

## v0.6.0

- add a CLI option `--ignore-region-live-at` which ignores those facts and
recompute them using Polonius even if provided.
- missing `region_live_at.facts` is no longer an error.
Expand Down Expand Up @@ -34,6 +33,15 @@ Add a CLI option `--dump-liveness-graph` to dump a Graphviz file with a

# polonius-engine

## v0.11.0

- adopt a new terminology for the Atoms, and begin documenting everything in a book
- use a new API to refer to the Atom types via associated types
- compute new errors: illegal subset relation errors, where for example
a `fn foo<'a, 'b>` might require `'a: 'b` annotations to be valid.
- more work towards supporting initialization facts and errors
- more work towards defining different phases where each can have its
own input facts or produce errors

## v0.10.0

Expand Down
2 changes: 1 addition & 1 deletion polonius-engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polonius-engine"
version = "0.10.0"
version = "0.11.0"
authors = ["The Rust Project Developers", "Polonius Developers"]
description = "Core definition for the Rust borrow checker"
license = "Apache-2.0/MIT"
Expand Down
2 changes: 1 addition & 1 deletion polonius-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "polonius-parser"
version = "0.3.0"
version = "0.4.0"
description = "Parser for the Polonius project"
license = "Apache-2.0/MIT"
authors = ["The Rust Project Developers"]
Expand Down

0 comments on commit c0dea8e

Please sign in to comment.