From 40952f14b7efe905ee96bf61c858fa1058f2ac3f Mon Sep 17 00:00:00 2001 From: CanadaHonk Date: Thu, 9 Feb 2023 18:30:45 +0000 Subject: [PATCH] release: 0.13.2 --- changelog.md | 3 +++ package.json | 2 +- src/index.js | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index b921bdd..5e9ae96 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,9 @@ - Fixed IPC exposing sometimes not working when ran early due to timing issue - Fixed IPC expose Proxy setter return values +### v0.13.2 +- Fixed Local not resolving custom indexes + ## [v0.12.0 - 2023-01-28](https://gluonjs.org/blog/gluon-v0.12/) diff --git a/package.json b/package.json index 66c491f..d6222f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gluon-framework/gluon", - "version": "0.13.1", + "version": "0.13.2", "description": "Make websites into desktop apps with system installed browsers and NodeJS.", "main": "src/index.js", "types": "gluon.d.ts", diff --git a/src/index.js b/src/index.js index 728311c..c4dc156 100644 --- a/src/index.js +++ b/src/index.js @@ -9,7 +9,7 @@ import Firefox from './browser/firefox.js'; import * as ExtensionsAPI from './extensions.js'; import LocalHTTP from './lib/local/http.js'; -process.versions.gluon = '0.13.1'; +process.versions.gluon = '0.13.2'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename);