diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d846ff0d..b5ec2e5bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -74,4 +74,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | npm publish - gh release create ${{ github.ref_name }} --target ${{ github.sha }} + gh release create ${{ github.ref_name }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b29eb7f2..35792f2f1 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.5] - TBD +## [v0.0.5] - 2023-04-27 Uses libvips v8.14.2, compiled with Emscripten v3.1.37. diff --git a/CMakeLists.txt b/CMakeLists.txt index 5b598896e..2c1ef4e25 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.13) project(wasm-vips - VERSION 0.0.4 + VERSION 0.0.5 DESCRIPTION "libvips for the browser and Node.js, compiled to WebAssembly with Emscripten" LANGUAGES CXX diff --git a/package.json b/package.json index 230b93ac6..1a5d39614 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wasm-vips", - "version": "0.0.4", + "version": "0.0.5", "description": "libvips for the browser and Node.js, compiled to WebAssembly with Emscripten", "homepage": "https://github.com/kleisauke/wasm-vips", "bugs": { diff --git a/playground/package.json b/playground/package.json index 7064b5c5c..1f9ddfff5 100644 --- a/playground/package.json +++ b/playground/package.json @@ -1,6 +1,6 @@ { "name": "wasm-vips-playground", - "version": "0.0.4", + "version": "0.0.5", "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 c34d95250..985f38fe4 100644 --- a/test/bench/package.json +++ b/test/bench/package.json @@ -1,6 +1,6 @@ { "name": "wasm-vips-benchmark", - "version": "0.0.4", + "version": "0.0.5", "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 afc9517e0..d326e75cc 100644 --- a/test/unit/package.json +++ b/test/unit/package.json @@ -1,6 +1,6 @@ { "name": "wasm-vips-test", - "version": "0.0.4", + "version": "0.0.5", "private": true, "description": "Unit tests for wasm-vips", "homepage": "https://github.com/kleisauke/wasm-vips/tree/master/test/unit",