@simbimbo/memory-ocmemog 0.1.13 → 0.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/ocmemog/__init__.py +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.14 — 2026-03-22
|
|
4
|
+
|
|
5
|
+
Corrective follow-up to make the published release fully version-aligned.
|
|
6
|
+
|
|
7
|
+
### Highlights
|
|
8
|
+
- aligned package/source/documentation versioning after the 0.1.13 publish so source fallback version, README current-main note, and package metadata all agree on the shipped release
|
|
9
|
+
- preserves the full 0.1.13 hardening/test matrix and release validation while fixing version/documentation drift
|
|
10
|
+
|
|
3
11
|
## 0.1.13 — 2026-03-22
|
|
4
12
|
|
|
5
13
|
Final hardening release before a possible 1.0 cut.
|
package/README.md
CHANGED
|
@@ -213,7 +213,7 @@ launchctl bootstrap gui/$UID scripts/launchagents/com.openclaw.ocmemog.guard.pli
|
|
|
213
213
|
|
|
214
214
|
## Recent changes
|
|
215
215
|
|
|
216
|
-
### 0.1.
|
|
216
|
+
### 0.1.14 (current main)
|
|
217
217
|
|
|
218
218
|
Current main now includes:
|
|
219
219
|
- integrated release-gate validation with a fresh-state memory contract proof
|
package/ocmemog/__init__.py
CHANGED
|
@@ -7,6 +7,6 @@ from importlib.metadata import PackageNotFoundError, version as _package_version
|
|
|
7
7
|
try:
|
|
8
8
|
__version__ = _package_version("ocmemog-sidecar")
|
|
9
9
|
except PackageNotFoundError: # pragma: no cover - package metadata may be unavailable in source layouts.
|
|
10
|
-
__version__ = "0.1.
|
|
10
|
+
__version__ = "0.1.14"
|
|
11
11
|
|
|
12
12
|
__all__ = ["__version__"]
|
package/package.json
CHANGED