Compare commits

...

1 Commits

Author SHA1 Message Date
Syngnat
372ab5217d 🔧 chore(release): 准备 v0.9.4 发布 2026-08-23 22:12:51 +08:00
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@syngnat/gonavi-cli",
"version": "0.9.3",
"version": "0.9.4",
"description": "Verified platform wrapper for the GoNavi headless CLI",
"bin": {
"gonavi": "bin/gonavi.js"

View File

@@ -20,9 +20,9 @@ SPEC.loader.exec_module(MODULE)
class ValidateNpmCLIPackageVersionTests(unittest.TestCase):
def test_current_package_matches_the_first_stable_cli_tag(self) -> None:
def test_current_package_matches_the_release_tag(self) -> None:
package_json = ROOT / "npm" / "gonavi-cli" / "package.json"
self.assertEqual(MODULE.validate_package_version("v0.9.3", package_json), "0.9.3")
self.assertEqual(MODULE.validate_package_version("v0.9.4", package_json), "0.9.4")
def test_rejects_version_drift(self) -> None:
with tempfile.TemporaryDirectory() as temporary:

View File

@@ -14,7 +14,7 @@
"info": {
"companyName": "Syngnat",
"productName": "GoNavi",
"productVersion": "0.9.3",
"productVersion": "0.9.4",
"copyright": "Copyright 2026 Syngnat",
"comments": "GoNavi is licensed under the Apache License, Version 2.0."
},