Skip to content

Commit c1bf552

Browse files
committed
Bump the version constant and add a changelog entry
1 parent 5d20c13 commit c1bf552

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ 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.5.6]
9+
10+
### Fixed
11+
12+
- Improve error message when the OpenAI API returns an `incorrect_hostname`
13+
error due to regional endpoint requirements ([#70]). The error now tells
14+
the user to set `OPENAI_BASE_URL` or `--base-url` with the correct
15+
regional host (e.g. `https://us.api.openai.com/v1`).
16+
817
## [1.5.5]
918

1019
### Fixed
@@ -202,6 +211,7 @@ First stable release. Includes the complete CLI and importable library packages.
202211
- `types` — shared data types (`Report`, `Result`, `Level`, etc.)
203212
- `judge.LLMClient` interface for custom LLM providers
204213

214+
[1.5.6]: https://github.com/agent-ecosystem/skill-validator/compare/v1.5.5...v1.5.6
205215
[1.5.5]: https://github.com/agent-ecosystem/skill-validator/compare/v1.5.4...v1.5.5
206216
[1.5.4]: https://github.com/agent-ecosystem/skill-validator/compare/v1.5.3...v1.5.4
207217
[1.5.3]: https://github.com/agent-ecosystem/skill-validator/compare/v1.5.2...v1.5.3

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.5.5"
14+
const version = "v1.5.6"
1515

1616
var (
1717
outputFormat string

0 commit comments

Comments
 (0)