Skip to content

Commit ff19e4d

Browse files
committed
chore: bump version to 0.1.5
1 parent 4db1fae commit ff19e4d

File tree

4 files changed

+35
-4
lines changed

4 files changed

+35
-4
lines changed

CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.5] - 2025-12-19
11+
12+
### Added
13+
- **Statistical Pass/Fail System**: Variance-aware testing with configurable confidence levels for more reliable evaluations
14+
- **Statistical Mode in CLI**: New `--runs` flag to run tests multiple times and get statistical results
15+
- **Templates**: Added test case templates for common scenarios
16+
17+
### Fixed
18+
- **LangGraph Adapter**: Fixed adapter compatibility issues
19+
- **Config-free runs**: Allow `evalview run` without requiring a config file
20+
- **Node SDK License**: Fixed license mismatch - now correctly uses Apache 2.0
21+
22+
### Documentation
23+
- Added FAQ section and comparison table to README
24+
- Added "Run examples directly" section
25+
- Added design partners section
26+
- Improved README structure for better clarity
27+
28+
## [0.1.4] - 2025-12-15
29+
30+
### Added
31+
- **Ollama Support**: Use Ollama as LLM-as-judge provider for free local evaluation
32+
- **Ollama Adapter**: New adapter for testing LangGraph+Ollama agents
33+
- Auto-detect Ollama when running locally
34+
35+
### Documentation
36+
- Added Ollama example project with setup guide
37+
1038
## [0.1.3] - 2025-12-08
1139

1240
### Added
@@ -150,6 +178,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
150178
- **Fixed**: Bug fixes
151179
- **Security**: Security fixes and improvements
152180

153-
[Unreleased]: https://github.com/hidai25/eval-view/compare/v0.1.1...HEAD
181+
[Unreleased]: https://github.com/hidai25/eval-view/compare/v0.1.5...HEAD
182+
[0.1.5]: https://github.com/hidai25/eval-view/compare/v0.1.4...v0.1.5
183+
[0.1.4]: https://github.com/hidai25/eval-view/compare/v0.1.3...v0.1.4
184+
[0.1.3]: https://github.com/hidai25/eval-view/compare/v0.1.1...v0.1.3
154185
[0.1.1]: https://github.com/hidai25/eval-view/compare/v0.1.0...v0.1.1
155186
[0.1.0]: https://github.com/hidai25/eval-view/releases/tag/v0.1.0

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "evalview",
3-
"version": "0.1.3",
3+
"version": "0.1.5",
44
"private": true,
55
"license": "Apache-2.0",
66
"type": "module",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "evalview"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Pytest-style testing framework for AI agents — LangGraph, CrewAI, OpenAI, Anthropic"
99
readme = "README.md"
1010
license = "Apache-2.0"

sdks/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@evalview/node",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Drop-in Node.js middleware for EvalView testing framework",
55
"main": "dist/index.js",
66
"module": "dist/index.js",

0 commit comments

Comments
 (0)