@oh-my-pi/pi-natives 16.4.8 → 16.5.0

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/native/index.d.ts CHANGED
@@ -170,7 +170,7 @@ export declare function __ompInstallTokioRuntime(): void
170
170
  * `packages/natives/native/index.js` (which derives the name from
171
171
  * `package.json#version`).
172
172
  */
173
- export declare function __piNativesV16_4_8(): void
173
+ export declare function __piNativesV16_5_0(): void
174
174
 
175
175
  /**
176
176
  * Apply ast-grep rewrite rules to matching files; honors `dryRun` and returns
package/native/index.js CHANGED
@@ -24,7 +24,7 @@ export const Shell = nativeBindings.Shell;
24
24
 
25
25
  // functions
26
26
  export const __ompInstallTokioRuntime = nativeBindings.__ompInstallTokioRuntime;
27
- export const __piNativesV16_4_8 = nativeBindings.__piNativesV16_4_8;
27
+ export const __piNativesV16_5_0 = nativeBindings.__piNativesV16_5_0;
28
28
  export const astEdit = nativeBindings.astEdit;
29
29
  export const astGrep = nativeBindings.astGrep;
30
30
  export const astMatch = nativeBindings.astMatch;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-my-pi/pi-natives",
3
- "version": "16.4.8",
3
+ "version": "16.5.0",
4
4
  "description": "Native Rust bindings for grep, clipboard, image processing, syntax highlighting, PTY, and shell operations via N-API",
5
5
  "type": "module",
6
6
  "homepage": "https://omp.sh",
@@ -42,7 +42,7 @@
42
42
  "bench": "bun bench/grep.ts"
43
43
  },
44
44
  "devDependencies": {
45
- "@napi-rs/cli": "3.7.0",
45
+ "@napi-rs/cli": "3.7.2",
46
46
  "@types/bun": "^1.3.14"
47
47
  },
48
48
  "engines": {
@@ -67,10 +67,10 @@
67
67
  }
68
68
  },
69
69
  "optionalDependencies": {
70
- "@oh-my-pi/pi-natives-linux-x64": "16.4.8",
71
- "@oh-my-pi/pi-natives-linux-arm64": "16.4.8",
72
- "@oh-my-pi/pi-natives-darwin-x64": "16.4.8",
73
- "@oh-my-pi/pi-natives-darwin-arm64": "16.4.8",
74
- "@oh-my-pi/pi-natives-win32-x64": "16.4.8"
70
+ "@oh-my-pi/pi-natives-linux-x64": "16.5.0",
71
+ "@oh-my-pi/pi-natives-linux-arm64": "16.5.0",
72
+ "@oh-my-pi/pi-natives-darwin-x64": "16.5.0",
73
+ "@oh-my-pi/pi-natives-darwin-arm64": "16.5.0",
74
+ "@oh-my-pi/pi-natives-win32-x64": "16.5.0"
75
75
  }
76
76
  }