Skip to content

Commit

Permalink
updating libheif to 1.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
catdad committed Oct 7, 2024
1 parent e86e853 commit bf311a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`;
Expand Down
2 changes: 1 addition & 1 deletion test/libheif.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});

Expand Down

0 comments on commit bf311a9

Please sign in to comment.