diff --git a/package.json b/package.json index cb3c06e..c93bf43 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "libheif-js", - "version": "1.18.0", + "version": "1.18.2", "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 c298e60..1909ff1 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.18.0'; +const version = 'v1.18.2'; 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 733fd0c..bfb7439 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.18.0') + expect(libheif.heif_get_version()).to.equal('1.18.2') .and.to.equal(pkg.version); });