release: 0.13.1

This commit is contained in:
CanadaHonk 2023-02-08 19:05:33 +00:00
parent f02abcb2f1
commit c2f914314a
3 changed files with 7 additions and 2 deletions

View File

@ -2,6 +2,11 @@
## [v0.13.0 - 2023-02-08](https://gluonjs.org/blog/gluon-v0.13/)
### v0.13.1
- Fixed IPC exposing sometimes not working when ran early due to timing issue
- Fixed IPC expose Proxy setter return values
## [v0.12.0 - 2023-01-28](https://gluonjs.org/blog/gluon-v0.12/)
## [v0.11.0 - 2023-01-08](https://gluonjs.org/blog/gluon-v0.11/)

View File

@ -1,6 +1,6 @@
{
"name": "@gluon-framework/gluon",
"version": "0.13.0",
"version": "0.13.1",
"description": "Make websites into desktop apps with system installed browsers and NodeJS.",
"main": "src/index.js",
"types": "gluon.d.ts",

View File

@ -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.0';
process.versions.gluon = '0.13.1';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);