Skip to content

Commit da3ec1f

Browse files
chore: release (#238)
Co-authored-by: beeb-release-plz[bot] <146623270+beeb-release-plz[bot]@users.noreply.github.com>
1 parent 16cf3dd commit da3ec1f

File tree

7 files changed

+57
-10
lines changed

7 files changed

+57
-10
lines changed

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/lintspec-core/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
44

55

6+
## [0.16.0] - 2026-03-11
7+
8+
### Added
9+
10+
11+
- add `--stdout` and `--exit-zero` cli flags ([#236](https://github.com/beeb/lintspec/pull/236)) - ([230b469](https://github.com/beeb/lintspec/commit/230b469ff467ee3d39e294a82b8f53476cb07447))
12+
- [**breaking**] add `-n` to specify parallelism ([#240](https://github.com/beeb/lintspec/pull/240)) - ([2d59f14](https://github.com/beeb/lintspec/commit/2d59f14270e05233bf4131e3e7176d149c07281f))
13+
14+
15+
16+
17+
**Full Changelog**: [0.15.0...0.16.0](https://github.com/beeb/lintspec/compare/v0.15.0...v0.16.0)
18+
19+
620
## [0.15.0] - 2026-02-15
721

822
### Added

crates/lintspec-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lintspec-core"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
description = "Core library for lintspec"
55
readme = "./README.md"
66
keywords = ["natspec", "solidity", "linter", "documentation"]
@@ -40,7 +40,7 @@ fastrand = "2.3.0"
4040
figment = { version = "0.10.19", features = ["env", "toml"] }
4141
ignore = "0.4.24"
4242
inturn = "0.1.2"
43-
lintspec-macros = { path = "../lintspec-macros", version = "0.2.3" }
43+
lintspec-macros = { path = "../lintspec-macros", version = "0.2.4" }
4444
regex = { version = "1.11.1", optional = true }
4545
semver = "1.0.25"
4646
serde = { version = "1.0.217", features = ["derive"] }

crates/lintspec-macros/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
44

5+
## [0.2.4] - 2026-03-11
6+
7+
### Added
8+
9+
10+
- add `--stdout` and `--exit-zero` cli flags ([#236](https://github.com/beeb/lintspec/pull/236)) - ([230b469](https://github.com/beeb/lintspec/commit/230b469ff467ee3d39e294a82b8f53476cb07447))
11+
12+
13+
14+
15+
**Full Changelog**: [0.2.3...0.2.4](https://github.com/beeb/lintspec/compare/v0.2.3...v0.2.4)
16+
17+
518
## [0.2.3] - 2026-02-11
619

720
### Documentation

crates/lintspec-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 = "lintspec-macros"
3-
version = "0.2.3"
3+
version = "0.2.4"
44
description = "Convenience macros for lintspec"
55
readme = "./README.md"
66
authors.workspace = true

crates/lintspec/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
33
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
44

55

6+
## [0.16.0] - 2026-03-11
7+
8+
### Added
9+
10+
11+
- add `--stdout` and `--exit-zero` cli flags ([#236](https://github.com/beeb/lintspec/pull/236)) - ([230b469](https://github.com/beeb/lintspec/commit/230b469ff467ee3d39e294a82b8f53476cb07447))
12+
- [**breaking**] add `-n` to specify parallelism ([#240](https://github.com/beeb/lintspec/pull/240)) - ([2d59f14](https://github.com/beeb/lintspec/commit/2d59f14270e05233bf4131e3e7176d149c07281f))
13+
14+
### Changed
15+
16+
- **(deps)** update toml version ([#239](https://github.com/beeb/lintspec/pull/239)) - ([747c9aa](https://github.com/beeb/lintspec/commit/747c9aa2d9cf67790cbea297d2b8d2ab70432525))
17+
18+
19+
20+
21+
22+
23+
**Full Changelog**: [0.15.0...0.16.0](https://github.com/beeb/lintspec/compare/v0.15.0...v0.16.0)
24+
25+
626
## [0.15.0] - 2026-02-15
727

828
### Changed

crates/lintspec/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lintspec"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
description = "A blazingly fast linter for NatSpec comments in Solidity code"
55
keywords = ["natspec", "solidity", "linter", "checker", "documentation"]
66
authors.workspace = true
@@ -25,7 +25,7 @@ clap_complete = "4.5.57"
2525
dotenvy = "0.15.7"
2626
dunce = "1.0.5"
2727
figment = { version = "0.10.19", features = ["env", "toml"] }
28-
lintspec-core = { path = "../lintspec-core", version = "0.15.0", default-features = false, features = [
28+
lintspec-core = { path = "../lintspec-core", version = "0.16.0", default-features = false, features = [
2929
"clap",
3030
] }
3131
miette = { version = "7.5.0", features = ["fancy"] }

0 commit comments

Comments
 (0)