From 3aa131147f045c00b607323fafcf2f62d30ff9fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Tigerstr=C3=B6m?= Date: Wed, 1 Nov 2023 18:05:48 +0100 Subject: [PATCH 1/3] lib: update wasm url to v0.2.8-alpha --- lib/lnc.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lnc.ts b/lib/lnc.ts index 7297e26..6bca37f 100644 --- a/lib/lnc.ts +++ b/lib/lnc.ts @@ -14,7 +14,7 @@ import { wasmLog as log } from './util/log'; /** The default values for the LncConfig options */ const DEFAULT_CONFIG = { - wasmClientCode: 'https://lightning.engineering/lnc-v0.2.6-alpha.wasm', + wasmClientCode: 'https://lightning.engineering/lnc-v0.2.8-alpha.wasm', namespace: 'default', serverHost: 'mailbox.terminal.lightning.today:443' } as Required; From 287bd1283c8f4e3a2926281f3e81eb457d66d449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Tigerstr=C3=B6m?= Date: Wed, 1 Nov 2023 19:36:43 +0100 Subject: [PATCH 2/3] lnc-web: bump lnc-core version to v0.2.8-alpha --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 392a576..25404c1 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,7 @@ "webpack-cli": "4.9.2" }, "dependencies": { - "@lightninglabs/lnc-core": "0.2.6-alpha", + "@lightninglabs/lnc-core": "0.2.8-alpha", "crypto-js": "4.1.1" }, "browser": { diff --git a/yarn.lock b/yarn.lock index e36b8d2..ae34415 100644 --- a/yarn.lock +++ b/yarn.lock @@ -80,10 +80,10 @@ "@jridgewell/resolve-uri" "3.1.0" "@jridgewell/sourcemap-codec" "1.4.14" -"@lightninglabs/lnc-core@0.2.6-alpha": - version "0.2.6-alpha" - resolved "https://registry.yarnpkg.com/@lightninglabs/lnc-core/-/lnc-core-0.2.6-alpha.tgz#1b93d5aeefb09bb3dedcb82988368b15e223f8fd" - integrity sha512-bw2EQG78pPKMZMFwV+TR99RUbYgPVUKQYMLGGKIOvhPds3dBWSDZpMoqOyW/WidWGXF/ugPHzud8lDbKKhNXgA== +"@lightninglabs/lnc-core@0.2.8-alpha": + version "0.2.8-alpha" + resolved "https://registry.yarnpkg.com/@lightninglabs/lnc-core/-/lnc-core-0.2.8-alpha.tgz#78272c04a5ec95a9ccb830f75ab9b5ca227f0801" + integrity sha512-2tHzmklIiQhJiK1aabX0R2AbbWi0mizWgniCUOb573XToYQN7L61Phh+hWUCxIFfAhHCkp2mnSmX+7eT/ikxOg== "@tsconfig/node10@^1.0.7": version "1.0.9" From 754f52eba8963476c76766aa5fab13dc16e4e07b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Tigerstr=C3=B6m?= Date: Wed, 1 Nov 2023 18:07:53 +0100 Subject: [PATCH 3/3] lnc-web: bump version to v0.2.8-alpha --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 25404c1..3ed2fbd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@lightninglabs/lnc-web", - "version": "0.2.6-alpha", + "version": "0.2.8-alpha", "description": "Lightning Node Connect npm module for web", "main": "./dist/index.js", "types": "./dist/index.d.ts",