Skip to content

Commit 285179e

Browse files
chore: release (#160)
Co-authored-by: beeb-release-plz[bot] <146623270+beeb-release-plz[bot]@users.noreply.github.com>
1 parent 4b1ed48 commit 285179e

File tree

5 files changed

+64
-5
lines changed

5 files changed

+64
-5
lines changed

Cargo.lock

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

crates/lintspec-macros/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
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.0] - 2025-10-15
6+
7+
### Changed
8+
9+
- **(solar)** [**breaking**] use SIMD to accelerate offset calculations ([#164](https://github.com/beeb/lintspec/pull/164)) - ([1352848](https://github.com/beeb/lintspec/commit/135284863585d35cd8bc4dfbffad393172ed789e))
10+
11+
12+
13+
14+
15+
16+
**Full Changelog**: [0.1.1...0.2.0](https://github.com/beeb/lintspec/compare/v0.1.1...v0.2.0)
17+
18+
519
## [0.1.1] - 2025-10-10
620

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

crates/lintspec/CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,51 @@
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.11.0] - 2025-10-15
7+
8+
### Added
9+
10+
11+
- [**breaking**] make solar the default parser ([#168](https://github.com/beeb/lintspec/pull/168)) - ([4b1ed48](https://github.com/beeb/lintspec/commit/4b1ed48daa9d6fc8cb3d54658e3c560e7cc60fb6))
12+
13+
### Changed
14+
15+
- **(definitions)** improve TextIndex advance ([#163](https://github.com/beeb/lintspec/pull/163)) - ([f7c10dc](https://github.com/beeb/lintspec/commit/f7c10dcc361b548c953022771075ed03cafed09e))
16+
17+
- **(solar)** improve span calculations ([#161](https://github.com/beeb/lintspec/pull/161)) - ([589aeaf](https://github.com/beeb/lintspec/commit/589aeafcf7c42a660e53f1339f415a280c662488))
18+
19+
- **(solar)** [**breaking**] use SIMD to accelerate offset calculations ([#164](https://github.com/beeb/lintspec/pull/164)) - ([1352848](https://github.com/beeb/lintspec/commit/135284863585d35cd8bc4dfbffad393172ed789e))
20+
21+
22+
- generic functions with inner non-generic params ([#159](https://github.com/beeb/lintspec/pull/159)) - ([ee7ea9c](https://github.com/beeb/lintspec/commit/ee7ea9cf2a07798aa9ff4b7520c42163ff0b104e))
23+
24+
### Documentation
25+
26+
27+
- update versions and library usage ([#166](https://github.com/beeb/lintspec/pull/166)) - ([b091959](https://github.com/beeb/lintspec/commit/b09195973b1b1abd13b5c90cea493f91d5c59613))
28+
29+
### Fixed
30+
31+
- **(textindex)** populating offset zero ([#167](https://github.com/beeb/lintspec/pull/167)) - ([a571ce7](https://github.com/beeb/lintspec/commit/a571ce78ddd7780b2682b8528ad2a37556c7c746))
32+
33+
34+
35+
### Removed
36+
37+
38+
- remove two benches that are noisy ([#162](https://github.com/beeb/lintspec/pull/162)) - ([f3a3ce2](https://github.com/beeb/lintspec/commit/f3a3ce27ceba097a5d73e888463d2524e1dafe10))
39+
40+
### Tests
41+
42+
43+
- add unicode sample ([#165](https://github.com/beeb/lintspec/pull/165)) - ([554ca96](https://github.com/beeb/lintspec/commit/554ca969ba4788a1b9c4dc35b28107756bfc7a2b))
44+
45+
46+
47+
48+
**Full Changelog**: [0.10.0...0.11.0](https://github.com/beeb/lintspec/compare/v0.10.0...v0.11.0)
49+
50+
651
## [0.10.0] - 2025-10-10
752

853
### Added

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.10.0"
3+
version = "0.11.0"
44
description = "A blazingly fast linter for NatSpec comments in Solidity code"
55
keywords = ["natspec", "solidity", "linter", "checker", "documentation"]
66
authors.workspace = true
@@ -33,7 +33,7 @@ dotenvy = { version = "0.15.7", optional = true }
3333
dunce = "1.0.5"
3434
figment = { version = "0.10.19", features = ["env", "toml"] }
3535
ignore = "0.4.23"
36-
lintspec-macros = { path = "../lintspec-macros", version = "0.1.1" }
36+
lintspec-macros = { path = "../lintspec-macros", version = "0.2.0" }
3737
miette = { version = "7.5.0", features = ["fancy"], optional = true }
3838
rayon = { version = "1.10.0", optional = true }
3939
regex = { version = "1.11.1", optional = true }

0 commit comments

Comments
 (0)