Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@ Versioning follows [Semantic Versioning](https://semver.org/).

## Unreleased

## [1.2.0] — 2026-06-08

### Added

- Added `ref-verify check-file` for JSONL and CSV DOI/claim batch checks.
- Added fixture-backed numeric claim eval coverage for repeated-use workflows.
- Added DOI-bound OpenAlex abstract fallback before Semantic Scholar and PubMed.
- Added a CLI regression corpus and manual Live Smoke ship gate for release-readiness checks.
- Added English and Korean scope guidance that explains what the tool verifies, what it does not verify, and how to interpret non-`ACCEPT` verdicts.

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ref-verify"
version = "1.1.2"
version = "1.2.0"
description = "Executable DOI and claim verification helpers for academic citations"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion src/ref_verify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ["__version__"]

__version__ = "1.1.2"
__version__ = "1.2.0"
4 changes: 2 additions & 2 deletions tests/test_skill_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,8 +204,8 @@ def test_package_version_matches_module_version(self):
encoding="utf-8"
)

self.assertIn('version = "1.1.2"', pyproject)
self.assertIn('__version__ = "1.1.2"', init)
self.assertIn('version = "1.2.0"', pyproject)
self.assertIn('__version__ = "1.2.0"', init)

def test_readmes_prioritize_user_workflow_before_architecture_details(self):
readme = (REPO_ROOT / "README.md").read_text(encoding="utf-8")
Expand Down