diff --git a/CHANGELOG.md b/CHANGELOG.md index 9232b0efb..2983eb2dc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to wasm-vips will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [v0.0.4] - TBD +## [v0.0.4] - 2022-11-03 Uses libvips v8.13.3, compiled with Emscripten v3.1.24. diff --git a/CMakeLists.txt b/CMakeLists.txt index 982796720..8f9a06826 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.13) project(wasm-vips - VERSION 0.0.3 + VERSION 0.0.4 DESCRIPTION "libvips for the browser and Node.js, compiled to WebAssembly with Emscripten" LANGUAGES CXX diff --git a/package.json b/package.json index 743e73e20..b4e9f8e50 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wasm-vips", - "version": "0.0.3", + "version": "0.0.4", "description": "libvips for the browser and Node.js, compiled to WebAssembly with Emscripten", "homepage": "https://github.com/kleisauke/wasm-vips", "bugs": { @@ -29,6 +29,7 @@ "types": "lib/vips.d.ts", "files": [ "lib/node-commonjs/*.js", + "lib/node-es6/*.js", "lib/node-es6/*.mjs", "lib/*.js", "lib/vips.d.ts", diff --git a/playground/package.json b/playground/package.json index 9312e2c83..328b5d8bd 100644 --- a/playground/package.json +++ b/playground/package.json @@ -1,6 +1,6 @@ { "name": "wasm-vips-playground", - "version": "0.0.3", + "version": "0.0.4", "private": true, "description": "A playground for experimenting with wasm-vips", "homepage": "https://github.com/kleisauke/wasm-vips/tree/master/playground#readme", diff --git a/test/bench/package.json b/test/bench/package.json index d8cc95716..c34d95250 100644 --- a/test/bench/package.json +++ b/test/bench/package.json @@ -1,6 +1,6 @@ { "name": "wasm-vips-benchmark", - "version": "0.0.3", + "version": "0.0.4", "private": true, "description": "Benchmark and performance tests for wasm-vips", "homepage": "https://github.com/kleisauke/wasm-vips/tree/master/test/bench#readme", diff --git a/test/unit/package.json b/test/unit/package.json index 373d2b080..729e20a0a 100644 --- a/test/unit/package.json +++ b/test/unit/package.json @@ -1,6 +1,6 @@ { "name": "wasm-vips-test", - "version": "0.0.3", + "version": "0.0.4", "private": true, "description": "Unit tests for wasm-vips", "homepage": "https://github.com/kleisauke/wasm-vips/tree/master/test/unit",