Skip to content

Commit 3f73c05

Browse files
committed
Bump to v0.5.33
1 parent 4346dad commit 3f73c05

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

crates/flowistry/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flowistry"
3-
version = "0.5.32"
3+
version = "0.5.33"
44
edition = "2021"
55
authors = ["Will Crichton <[email protected]>"]
66
description = "Modular information flow analysis"

crates/flowistry_ide/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flowistry_ide"
3-
version = "0.5.32"
3+
version = "0.5.33"
44
edition = "2021"
55
authors = ["Will Crichton <[email protected]>"]
66
description = "Information Flow in the IDE for Rust"
@@ -14,8 +14,8 @@ rustc_private = true
1414
decompose = ["petgraph", "rayon"]
1515

1616
[dependencies]
17-
flowistry = {version = "0.5.32", path = "../flowistry"}
18-
rustc_plugin = {version = "0.5.32", path = "../rustc_plugin"}
17+
flowistry = {version = "0.5.33", path = "../flowistry"}
18+
rustc_plugin = {version = "0.5.33", path = "../rustc_plugin"}
1919
anyhow = "1"
2020
log = "0.4"
2121
fluid-let = "1.0"

crates/flowistry_ifc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "flowistry_ifc"
3-
version = "0.5.32"
3+
version = "0.5.33"
44
edition = "2021"
55
publish = false
66

77
[package.metadata.rust-analyzer]
88
rustc_private = true
99

1010
[dependencies]
11-
flowistry = {version = "0.5.32", path = "../flowistry"}
12-
rustc_plugin = {version = "0.5.32", path = "../rustc_plugin"}
11+
flowistry = {version = "0.5.33", path = "../flowistry"}
12+
rustc_plugin = {version = "0.5.33", path = "../rustc_plugin"}
1313
env_logger = "0.9"
1414
termcolor = "1.1"
1515
anyhow = "1"

crates/flowistry_ifc_traits/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flowistry_ifc_traits"
3-
version = "0.5.32"
3+
version = "0.5.33"
44
edition = "2021"
55
publish = false
66

crates/rustc_plugin/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustc_plugin"
3-
version = "0.5.32"
3+
version = "0.5.33"
44
edition = "2021"
55
authors = ["Will Crichton <[email protected]>"]
66
description = "Framework for integrating a rustc plugin with Cargo"

ide/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ide/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"type": "git"
1313
},
1414
"description": "Information Flow in the IDE for Rust",
15-
"version": "0.5.32",
15+
"version": "0.5.33",
1616
"engines": {
1717
"vscode": "^1.54.0"
1818
},

scripts/check_versions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import json
44

55
js_pkg_version = json.load(open('./ide/package.json', 'r'))['version']
6-
cli_version = sp.check_output('cargo flowistry -V', shell=True).decode('utf-8').split(' ')[1].strip()
6+
cli_version = sp.check_output('cargo flowistry -V', shell=True).decode('utf-8').strip()
77

88
print('JS package version: ', js_pkg_version)
99
print('CLI version: ', cli_version)

0 commit comments

Comments
 (0)