From 1f4dc85637b7330e315da1e6a297fb68137a55a0 Mon Sep 17 00:00:00 2001 From: Kiril Vatev Date: Mon, 22 Jul 2024 19:42:49 -0400 Subject: [PATCH] updating libheif to 1.18.0 --- package.json | 2 +- scripts/install.js | 2 +- test/libheif.test.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index b790790..cb3c06e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "libheif-js", - "version": "1.17.1", + "version": "1.18.0", "description": "Emscripten distribution of libheif for Node.JS and the browser", "main": "index.js", "scripts": { diff --git a/scripts/install.js b/scripts/install.js index 408e9cb..dd109dc 100644 --- a/scripts/install.js +++ b/scripts/install.js @@ -8,7 +8,7 @@ const gunzip = require('gunzip-maybe'); const esbuild = require('esbuild'); -const version = 'v1.17.1'; +const version = 'v1.18.0'; const base = `https://github.com/catdad-experiments/libheif-emscripten/releases/download/${version}`; const tarball = `${base}/libheif.tar.gz`; diff --git a/test/libheif.test.js b/test/libheif.test.js index ae8e694..733fd0c 100644 --- a/test/libheif.test.js +++ b/test/libheif.test.js @@ -87,7 +87,7 @@ function runTests(libheif) { it('is the correct version', () => { expect(libheif).to.have.property('heif_get_version') .and.to.be.a('function'); - expect(libheif.heif_get_version()).to.equal('1.17.1') + expect(libheif.heif_get_version()).to.equal('1.18.0') .and.to.equal(pkg.version); });