Skip to content

Commit 2bf6b59

Browse files
committed
Bump version
1 parent 777e5c6 commit 2bf6b59

File tree

7 files changed

+19
-15
lines changed

7 files changed

+19
-15
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.1.3
4+
5+
- Verify that package.json exists before installing Node modules ([#580](https://github.com/trailofbits/necessist/pull/580))
6+
37
## 0.1.2
48

59
- Migrate away from `atty` ([#556](https://github.com/trailofbits/necessist/pull/556))

Cargo.lock

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

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "necessist-core"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55

66
description = "necessist-core"

crates_io/Cargo.lock

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

crates_io/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "necessist"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55

66
description = "necessist"
@@ -10,8 +10,8 @@ license = "AGPL-3.0"
1010
repository = "https://github.com/trailofbits/necessist"
1111

1212
[dependencies]
13-
necessist-core = { version = "=0.1.2", path = "../core", features = ["clap"] }
14-
necessist-frameworks = { version = "=0.1.2", path = "../frameworks" }
13+
necessist-core = { version = "=0.1.3", path = "../core", features = ["clap"] }
14+
necessist-frameworks = { version = "=0.1.3", path = "../frameworks" }
1515

1616
anyhow = { version = "1.0", features = ["backtrace"] }
1717
clap = "4.3"

frameworks/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "necessist-frameworks"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55

66
description = "necessist-frameworks"
@@ -10,7 +10,7 @@ license = "AGPL-3.0"
1010
repository = "https://github.com/trailofbits/necessist"
1111

1212
[dependencies]
13-
necessist-core = { version = "=0.1.2", path = "../core" }
13+
necessist-core = { version = "=0.1.3", path = "../core" }
1414

1515
anyhow = "1.0"
1616
assert_cmd = "2.0"

necessist/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "necessist"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55

66
description = "necessist"
@@ -15,8 +15,8 @@ path = "tests/ci.rs"
1515
required-features = ["ci"]
1616

1717
[dependencies]
18-
necessist-core = { version = "=0.1.2", path = "../core", features = ["clap"] }
19-
necessist-frameworks = { version = "=0.1.2", path = "../frameworks" }
18+
necessist-core = { version = "=0.1.3", path = "../core", features = ["clap"] }
19+
necessist-frameworks = { version = "=0.1.3", path = "../frameworks" }
2020

2121
anyhow = { version = "1.0", features = ["backtrace"] }
2222
clap = { version = "4.3" }

0 commit comments

Comments
 (0)