@lore-co/cli 0.1.21 → 0.1.22

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/dist/update.js CHANGED
@@ -22,7 +22,7 @@ Usage:
22
22
  lore update [--version <tag>]
23
23
 
24
24
  Options:
25
- --version <tag> Release tag to install, for example v0.1.21
25
+ --version <tag> Release tag to install, for example v0.1.22
26
26
  -h, --help Show this help
27
27
 
28
28
  Environment:
@@ -32,7 +32,7 @@ Environment:
32
32
 
33
33
  Examples:
34
34
  lore update
35
- lore update --version v0.1.21
35
+ lore update --version v0.1.22
36
36
  `;
37
37
  export function isReleaseTag(value) {
38
38
  return RELEASE_TAG_PATTERN.test(value);
@@ -50,7 +50,7 @@ export function parseUpdateVersion(args) {
50
50
  if (version !== undefined && isReleaseTag(version)) {
51
51
  return version;
52
52
  }
53
- throw new Error("--version must be a release tag such as v0.1.21");
53
+ throw new Error("--version must be a release tag such as v0.1.22");
54
54
  }
55
55
  throw new Error("Unknown update options. Try: lore update --help");
56
56
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lore-co/cli",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "Connect Claude Code, Codex, Cursor, OpenCode, Polytoken, and T3 Code to Lore shared engineering memory",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -61,8 +61,8 @@
61
61
  "@modelcontextprotocol/sdk": "^1.30.0",
62
62
  "ws": "^8.21.3",
63
63
  "zod": "^4.4.3",
64
- "@lore-co/core": "0.1.21",
65
- "@lore-co/sdk": "0.1.21"
64
+ "@lore-co/sdk": "0.1.22",
65
+ "@lore-co/core": "0.1.22"
66
66
  },
67
67
  "devDependencies": {
68
68
  "@types/ws": "^8.18.1"