koffi-cream 2.16.1 → 2.16.2

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/README.md +6 -0
  2. package/package.json +14 -14
package/README.md CHANGED
@@ -18,6 +18,12 @@ const some_func = lib.func('int some_func(int a, int b)')
18
18
  [^2]: Koffi's package includes 18 native binaries (of which 17 are not compatible with your platform), the build tools and the full C++/asm source code.
19
19
 
20
20
 
21
+ > [!IMPORTANT]
22
+ > **koffi-cream currently only focuses on Koffi 2.x**. While [Koffi 3.0 is on its way](https://www.npmjs.com/package/koffi?activeTab=versions) (@next is 3.0.0-alpha.9 at the time of writing), [it is not clear yet which publishing strategy Niels will adopt](https://github.com/Koromix/koffi/issues/201#issuecomment-4274256240). Should he decide to go with the split package format, then this will be the end of koffi-cream and I will only follow critical updates to the 2.x line.
23
+ >
24
+ > Otherwise, well... who knows? :)
25
+
26
+
21
27
  ## The why and the how
22
28
  The discussion at https://github.com/Koromix/koffi/issues/201 explains why I decided to create `koffi-cream`.
23
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "koffi-cream",
3
- "version": "2.16.1",
3
+ "version": "2.16.2",
4
4
  "description": "A lighter packaging for Koffi, the fast and simple C FFI (foreign function interface) for Node.js",
5
5
  "author": {
6
6
  "name": "Stephan 'Septh' Schreiber",
@@ -41,18 +41,18 @@
41
41
  "main": "index.js",
42
42
  "types": "index.d.ts",
43
43
  "optionalDependencies": {
44
- "@septh/koffi-win32-x64": "2.16.1",
45
- "@septh/koffi-win32-arm64": "2.16.1",
46
- "@septh/koffi-openbsd-x64": "2.16.1",
47
- "@septh/koffi-linux-x64-musl": "2.16.1",
48
- "@septh/koffi-linux-arm64-musl": "2.16.1",
49
- "@septh/koffi-linux-x64-glibc": "2.16.1",
50
- "@septh/koffi-linux-riscv64": "2.16.1",
51
- "@septh/koffi-linux-loong64": "2.16.1",
52
- "@septh/koffi-linux-arm64-glibc": "2.16.1",
53
- "@septh/koffi-freebsd-x64": "2.16.1",
54
- "@septh/koffi-freebsd-arm64": "2.16.1",
55
- "@septh/koffi-darwin-x64": "2.16.1",
56
- "@septh/koffi-darwin-arm64": "2.16.1"
44
+ "@septh/koffi-win32-x64": "2.16.2",
45
+ "@septh/koffi-win32-arm64": "2.16.2",
46
+ "@septh/koffi-openbsd-x64": "2.16.2",
47
+ "@septh/koffi-linux-x64-musl": "2.16.2",
48
+ "@septh/koffi-linux-arm64-musl": "2.16.2",
49
+ "@septh/koffi-linux-x64-glibc": "2.16.2",
50
+ "@septh/koffi-linux-riscv64": "2.16.2",
51
+ "@septh/koffi-linux-loong64": "2.16.2",
52
+ "@septh/koffi-linux-arm64-glibc": "2.16.2",
53
+ "@septh/koffi-freebsd-x64": "2.16.2",
54
+ "@septh/koffi-freebsd-arm64": "2.16.2",
55
+ "@septh/koffi-darwin-x64": "2.16.2",
56
+ "@septh/koffi-darwin-arm64": "2.16.2"
57
57
  }
58
58
  }