From 7774f39a0cca8e65330d1bf273d8c0dc85c749e7 Mon Sep 17 00:00:00 2001 From: CanadaHonk Date: Sun, 8 Jan 2023 22:35:38 +0000 Subject: [PATCH] release: 0.11.0 --- changelog.md | 4 +++- package.json | 2 +- src/index.js | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index fd013fb..301487a 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,8 @@ # Gluon Changelog -## v0.10.1 +## [v0.11.0 - 2023-01-08](https://gluonjs.org/blog/gluon-v0.11/) + +## v0.10.1 - 2023-01-07 - Fixed IPC exposed functions being called with arguments incorrectly - Fixed onLoad causing errors in Node diff --git a/package.json b/package.json index 6049597..e2a6b04 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@gluon-framework/gluon", - "version": "0.11.0-alpha.7", + "version": "0.11.0", "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 885d70a..992171b 100644 --- a/src/index.js +++ b/src/index.js @@ -1,7 +1,7 @@ const rgb = (r, g, b, msg) => `\x1b[38;2;${r};${g};${b}m${msg}\x1b[0m`; global.log = (...args) => console.log(`[${rgb(88, 101, 242, 'Gluon')}]`, ...args); -process.versions.gluon = '0.11.0-alpha.7'; +process.versions.gluon = '0.11.0'; import { join, dirname, delimiter, sep, resolve, isAbsolute } from 'path'; import { access, readdir } from 'fs/promises';