Skip to content

Commit 51531cd

Browse files
committed
Bump to v0.1.17
1 parent 9c53089 commit 51531cd

7 files changed

Lines changed: 29 additions & 20 deletions

File tree

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/argus-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "argus-cli"
3-
version = "0.1.16"
3+
version = "0.1.17"
44
edition = "2021"
55
authors = ["Gavin Gray <gavinleroy6@gmail.com>"]
66
repository = "https://github.com/cognitive-engineering-lab/argus"
@@ -10,8 +10,8 @@ license = "MIT"
1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[dependencies]
13-
argus-lib = { path = "../argus" }
14-
argus-ext = { path = "../argus-ext" }
13+
argus-lib = { version = "0.1.17", path = "../argus" }
14+
argus-ext = { version = "0.1.17", path = "../argus-ext" }
1515
rustc_plugin = "=0.13.0-nightly-2025-03-03"
1616

1717
rustc_utils.workspace = true

crates/argus-ext/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "argus-ext"
3-
version = "0.1.16"
3+
version = "0.1.17"
44
edition = "2021"
55
authors = ["Gavin Gray <gavinleroy6@gmail.com>"]
66
repository = "https://github.com/cognitive-engineering-lab/argus"

crates/argus-ser-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "argus-ser-macros"
3-
version = "0.1.16"
3+
version = "0.1.17"
44
edition = "2021"
55
authors = ["Gavin Gray <gavinleroy6@gmail.com>"]
66
repository = "https://github.com/cognitive-engineering-lab/argus"

crates/argus-ser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "argus-ser"
3-
version = "0.1.16"
3+
version = "0.1.17"
44
edition = "2021"
55
authors = ["Gavin Gray <gavinleroy6@gmail.com>"]
66
repository = "https://github.com/cognitive-engineering-lab/argus"
@@ -28,8 +28,8 @@ ts-rs = { version = "7.1.1", features = [
2828
"no-serde-warnings",
2929
], optional = true }
3030

31-
argus-ser-macros = { path = "../argus-ser-macros" }
32-
argus-ext = { path = "../argus-ext" }
31+
argus-ser-macros = { version = "0.1.17", path = "../argus-ser-macros" }
32+
argus-ext = { version = "0.1.17", path = "../argus-ext" }
3333

3434
[dev-dependencies]
3535
argus-ser = { path = ".", features = ["testing"] }

crates/argus/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "argus-lib"
3-
version = "0.1.16"
3+
version = "0.1.17"
44
edition = "2021"
55
authors = ["Gavin Gray <gavinleroy6@gmail.com>"]
66
repository = "https://github.com/cognitive-engineering-lab/argus"
@@ -22,8 +22,8 @@ serde.workspace = true
2222
serde_json.workspace = true
2323
itertools.workspace = true
2424

25-
argus-ext = { path = "../argus-ext" }
26-
argus-ser = { path = "../argus-ser" }
25+
argus-ext = { version = "0.1.17", path = "../argus-ext" }
26+
argus-ser = { version = "0.1.17", path = "../argus-ser" }
2727
index_vec = { version = "0.1.3", features = ["serde"] }
2828
smallvec = "1.14.0"
2929
indexmap = { version = "2.2", features = ["serde"] }

ide/packages/extension/package.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "A trait debugger for Rust",
66
"license": "MIT",
77
"icon": "argus-logo-128.png",
8-
"version": "0.1.16",
8+
"version": "0.1.17",
99
"engines": {
1010
"vscode": "^1.99.1"
1111
},
@@ -17,8 +17,12 @@
1717
"url": "https://github.com/cognitive-engineering-lab/argus",
1818
"type": "git"
1919
},
20-
"categories": ["Programming Languages"],
21-
"activationEvents": ["onLanguage:rust"],
20+
"categories": [
21+
"Programming Languages"
22+
],
23+
"activationEvents": [
24+
"onLanguage:rust"
25+
],
2226
"contributes": {
2327
"commands": [
2428
{
@@ -51,7 +55,12 @@
5155
}
5256
]
5357
},
54-
"files": ["dist", "argus-logo-128.png", "LICENSE", "README.md"],
58+
"files": [
59+
"dist",
60+
"argus-logo-128.png",
61+
"LICENSE",
62+
"README.md"
63+
],
5564
"main": "./dist/argus.js",
5665
"exports": {
5766
".": {

0 commit comments

Comments
 (0)