Skip to content

Commit 741e609

Browse files
authored
Merge pull request #174 from lqd/release-0.13
Prepare release 0.13.0
2 parents 1bcf40d + d1d5022 commit 741e609

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ edition = "2018"
1111

1212
[dev-dependencies]
1313
diff = "0.1.0"
14-
polonius-parser = {version = "0.4.0", path = "polonius-parser" }
14+
polonius-parser = { path = "./polonius-parser" }
1515

1616
[dependencies]
1717
rustc-hash = "1.0.0"
18-
polonius-engine = {version = "0.12.0", path = "polonius-engine" }
18+
polonius-engine = { path = "./polonius-engine" }
1919
log = "0.4"
2020
petgraph = "0.4.13"
2121
pico-args = "0.2"

RELEASES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ Add a CLI option `--dump-liveness-graph` to dump a Graphviz file with a
3636

3737
# polonius-engine
3838

39+
## v.0.13.0
40+
- compute subset errors in all variants, allows the `Hybrid` variant to be the default again
41+
- more terminology work, on the relation names, to improve clarity
42+
3943
## v.0.12.1
4044

4145
- fix an issue in tracking paths and subpaths in move/init analysis

polonius-engine/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "polonius-engine"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors = ["The Rust Project Developers", "Polonius Developers"]
55
description = "Core definition for the Rust borrow checker"
66
license = "Apache-2.0/MIT"

polonius-engine/src/output/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,10 @@ struct Context<'ctx, T: FactTypes> {
140140
// initialization and liveness, so already computed by the time we get to borrowcking.
141141
cfg_edge: Relation<(T::Point, T::Point)>,
142142

143-
// Partial results possibly used by other variants as input
143+
// Partial results possibly used by other variants as input. Not currently used yet.
144+
#[allow(dead_code)]
144145
potential_errors: Option<FxHashSet<T::Loan>>,
146+
#[allow(dead_code)]
145147
potential_subset_errors: Option<Relation<(T::Origin, T::Origin)>>,
146148
}
147149

0 commit comments

Comments
 (0)