deepcode-ai 1.2.10 → 1.2.11

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -11909,7 +11909,7 @@ function parseVersion(version) {
11909
11909
  if (!match) return null;
11910
11910
  return [Number(match[1]), Number(match[2]), Number(match[3])];
11911
11911
  }
11912
- var VERSION = "1.2.10".length > 0 ? "1.2.10" : "0.0.0-dev";
11912
+ var VERSION = "1.2.11".length > 0 ? "1.2.11" : "0.0.0-dev";
11913
11913
  async function updateCommand() {
11914
11914
  writeStdoutLine(`Current version: ${VERSION}`);
11915
11915
  const update = await checkForUpdate(VERSION, { force: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deepcode-ai",
3
- "version": "1.2.10",
3
+ "version": "1.2.11",
4
4
  "description": "Terminal AI coding agent for local software development",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -32,7 +32,7 @@
32
32
  "deepcode-ai": "dist/index.js"
33
33
  },
34
34
  "engines": {
35
- "node": ">=20.20.0"
35
+ "node": ">=22.0.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"