From 60ea2881cf7d2fd5fbbaaf3f7bcb928706370bd1 Mon Sep 17 00:00:00 2001 From: Moon-python Date: Mon, 8 Jun 2026 22:41:53 +0900 Subject: [PATCH 1/2] Release 1.2.0: bump version and promote changelog PyPI 1.1.2 was published at 06:55Z today, before the unit/estimate (#7-#9), exact-numeric (#11), condition (#14), rate-limit (#12) and OpenAlex (#13) fixes landed (12:58-13:24Z). The version was never bumped, so those fixes are unreleased and `pip install ref-verify` still serves pre-fix code. - pyproject: 1.1.2 -> 1.2.0 (MINOR: new check-file/OpenAlex features, fixes) - CHANGELOG: promote the Unreleased block to [1.2.0] This lets the publish-pypi workflow ship the fixes that are already on main. Co-Authored-By: Claude Opus 4.8 (1M context) --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38db11b..982429a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ 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. diff --git a/pyproject.toml b/pyproject.toml index 255297a..91d82df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" From fa87334ea5e52a3d3a82faae4935b4569c14b0d7 Mon Sep 17 00:00:00 2001 From: Moon-Young Date: Mon, 8 Jun 2026 13:57:36 +0000 Subject: [PATCH 2/2] Release 1.2.0: align package version --- CHANGELOG.md | 2 ++ src/ref_verify/__init__.py | 2 +- tests/test_skill_docs.py | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 419b299..2c1e82f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,8 @@ Versioning follows [Semantic Versioning](https://semver.org/). - 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 diff --git a/src/ref_verify/__init__.py b/src/ref_verify/__init__.py index 1a6b8ac..f5075f7 100644 --- a/src/ref_verify/__init__.py +++ b/src/ref_verify/__init__.py @@ -2,4 +2,4 @@ __all__ = ["__version__"] -__version__ = "1.1.2" +__version__ = "1.2.0" diff --git a/tests/test_skill_docs.py b/tests/test_skill_docs.py index fefb6ac..9060690 100644 --- a/tests/test_skill_docs.py +++ b/tests/test_skill_docs.py @@ -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")