diff --git a/CHANGELOG.md b/CHANGELOG.md index ea56e91..5f8b246 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Libcurl.js Changelog: +## v0.6.1 (3/20/24): +- Fix NPM package exports + ## v0.6.0 (3/20/24): - Refactor JS and C code - Allow for multiple sessions with separate connection pools diff --git a/client/package.json b/client/package.json index c4ec9a8..7d4186d 100644 --- a/client/package.json +++ b/client/package.json @@ -1,10 +1,11 @@ { "name": "libcurl.js", - "version": "0.6.0", + "version": "0.6.1", "description": "An experimental port of libcurl to WebAssembly for use in the browser.", "main": "libcurl.mjs", "exports": { - "bundled": "./libcurl_full.mjs" + ".": "./libcurl.mjs", + "./bundled": "./libcurl_full.mjs" }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1"