Skip to content

Commit 6b1d50b

Browse files
committed
Prep v1.3.1 release
1 parent 76b762e commit 6b1d50b

2 files changed

Lines changed: 28 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.3.1]
9+
10+
### Added
11+
12+
- Add opt-in rate limiting for LLM API calls during evaluation via
13+
`RateLimit` option ([#37]). Disabled by default (zero value).
14+
- Recognize `OWNERS.yaml` and `OWNERS` as known extraneous files so they
15+
produce the more specific "not needed in a skill" warning ([#33]).
16+
17+
### Changed
18+
19+
- Deduplicate regex patterns into `util/regex.go`, fixing tilde-fence
20+
stripping in content analysis ([#35]).
21+
- Cache token encoder with `sync.Once` to avoid repeated initialization
22+
in batch runs ([#34]).
23+
24+
### Fixed
25+
26+
- Rate limiter now respects context cancellation instead of blocking
27+
until the next tick interval.
28+
- First rate-limited LLM call no longer incurs an unnecessary delay.
29+
830
## [1.3.0]
931

1032
### Added
@@ -81,10 +103,15 @@ First stable release. Includes the complete CLI and importable library packages.
81103
- `types` — shared data types (`Report`, `Result`, `Level`, etc.)
82104
- `judge.LLMClient` interface for custom LLM providers
83105

106+
[1.3.1]: https://github.com/agent-ecosystem/skill-validator/compare/v1.3.0...v1.3.1
84107
[1.3.0]: https://github.com/agent-ecosystem/skill-validator/compare/v1.2.1...v1.3.0
85108
[1.2.1]: https://github.com/agent-ecosystem/skill-validator/compare/v1.2.0...v1.2.1
86109
[1.2.0]: https://github.com/agent-ecosystem/skill-validator/compare/v1.1.0...v1.2.0
87110
[1.1.0]: https://github.com/agent-ecosystem/skill-validator/compare/v1.0.0...v1.1.0
111+
[#33]: https://github.com/agent-ecosystem/skill-validator/issues/33
112+
[#34]: https://github.com/agent-ecosystem/skill-validator/pull/34
113+
[#35]: https://github.com/agent-ecosystem/skill-validator/pull/35
114+
[#37]: https://github.com/agent-ecosystem/skill-validator/pull/37
88115
[#26]: https://github.com/agent-ecosystem/skill-validator/issues/26
89116
[#23]: https://github.com/agent-ecosystem/skill-validator/issues/23
90117
[#27]: https://github.com/agent-ecosystem/skill-validator/issues/27

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"github.com/agent-ecosystem/skill-validator/types"
1212
)
1313

14-
const version = "v1.3.0"
14+
const version = "v1.3.1"
1515

1616
var (
1717
outputFormat string

0 commit comments

Comments
 (0)