Skip to content

Commit 30709ab

Browse files
authored
Merge pull request #18 from Moonweave-Research/release/v1.2.0
Release 1.2.0: bump version so the merged fixes actually ship
2 parents cdb639c + fa87334 commit 30709ab

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ Versioning follows [Semantic Versioning](https://semver.org/).
99

1010
## Unreleased
1111

12+
## [1.2.0] — 2026-06-08
13+
1214
### Added
1315

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

1822
### Fixed
1923

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 = "ref-verify"
7-
version = "1.1.2"
7+
version = "1.2.0"
88
description = "Executable DOI and claim verification helpers for academic citations"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/ref_verify/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__all__ = ["__version__"]
44

5-
__version__ = "1.1.2"
5+
__version__ = "1.2.0"

tests/test_skill_docs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ def test_package_version_matches_module_version(self):
204204
encoding="utf-8"
205205
)
206206

207-
self.assertIn('version = "1.1.2"', pyproject)
208-
self.assertIn('__version__ = "1.1.2"', init)
207+
self.assertIn('version = "1.2.0"', pyproject)
208+
self.assertIn('__version__ = "1.2.0"', init)
209209

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

0 commit comments

Comments
 (0)